TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Showing results 1 to 25 of 42
Search took 0.13 seconds.
Search: Posts Made By: Orc
Forum: Absolute Beginners 09-15-2009, 06:38 AM
Replies: 12
Views: 1,066
Posted By Orc
NotePad++ is your friend

NotePad++ is your friend
Forum: General 05-11-2009, 03:01 PM
Replies: 10
Views: 842
Posted By Orc
Still learning. :-D

Still learning. :-D
Forum: Member Introductions 05-03-2009, 11:31 AM
Replies: 7
Views: 609
Posted By Orc
Welcome, but beware of the ASP Trolls.*!*

Welcome, but beware of the ASP Trolls.*!*
Forum: Advanced PHP Programming 04-28-2009, 10:06 PM
Replies: 15
Views: 908
Posted By Orc
Too bad I'm working on my own framework, and it's...

Too bad I'm working on my own framework, and it's categorized as an extension. :D
Forum: Javascript, AJAX, E4X 02-28-2009, 12:50 AM
Replies: 12
Views: 6,593
Posted By Orc
What I do is get the mouse position, and just...

What I do is get the mouse position, and just position the dropdown menu to the x and y corridinates of the mouses current position, which is also called events, then I check if its displayed or not,...
Forum: Mentor's Switchboard 11-28-2008, 05:04 PM
Replies: 4
Views: 1,987
Posted By Orc
[mentor] Orc

Specialty: PHP
Skills:
PHP/MySql: 4 years, 1-2 years professional
HTML: 6 years, 3 years professional
CSS: 6 years, 3 years professional
C++: 3 years, 1 professional
Java: 2 years, none...
Forum: General 07-25-2008, 11:23 AM
Replies: 8
Views: 693
Posted By Orc
I don't think you can use path in href, just do...

I don't think you can use path in href, just do the url base.
Forum: MySQL & Databases 07-24-2008, 03:13 AM
Replies: 3
Views: 1,092
Posted By Orc
You could do a left join as such SELECT...

You could do a left join as such



SELECT news.id, news.uid, news.cid, news.headline, news.body, count(DISTINCT news_comments.id) As comment_count FROM news
LEFT JOIN news_comments As news_comments...
Forum: Member Introductions 07-08-2008, 05:51 PM
Replies: 12
Views: 1,222
Posted By Orc
#include <stdio.h> // PRINTF :D #include...

#include <stdio.h> // PRINTF :D
#include <stdlib.h> // System function

int main ( )
{

printf("Welcome Dal!");
system("PAUSE");

return (-1);
Forum: General 06-27-2008, 02:51 PM
Replies: 5
Views: 647
Posted By Orc
That function means connected persistantly, as I...

That function means connected persistantly, as I do not understand it between the normal function.
Forum: Absolute Beginners 06-27-2008, 06:22 AM
Replies: 22
Views: 1,363
Posted By Orc
The above code looks like its not assigning a...

The above code looks like its not assigning a username and password but rather a static online bit which doesn't change, in opinion logged means it checks if the user logged so that makes him...
Forum: Absolute Beginners 06-10-2008, 07:20 PM
Replies: 3
Views: 983
Posted By Orc
You should do Boolean Full Text Searches, to seek...

You should do Boolean Full Text Searches, to seek more info on this:
MySQL :: MySQL 5.0 Reference Manual :: 11.8.2 Boolean Full-Text Searches...
Forum: TalkPHP Developer Team 06-08-2008, 08:56 PM
Replies: 293
Views: 9,866
Posted By Orc
Frameworks are boring to me. :P I like to code...

Frameworks are boring to me. :P I like to code more, than less. :P
Forum: Absolute Beginners 06-08-2008, 08:50 PM
Replies: 7
Views: 1,258
Posted By Orc
What do you mean? Started by ul? Also, you just...

What do you mean? Started by ul? Also, you just need one $file == "." no need for the same with the ..
Forum: General 05-25-2008, 10:11 PM
Replies: 4
Views: 1,111
Posted By Orc
You need to allow the array to write inside the...

You need to allow the array to write inside the while loop, so that way, it writes the filemtime, etc into that array every file in the loop, same goes for the rest of it.

What I mean for that...
Forum: Member Introductions 05-08-2008, 06:02 PM
Replies: 2
Views: 830
Posted By Orc
Welcome, always nice to see new members on this...

Welcome, always nice to see new members on this forum, yeah php is great . :P
Forum: Member Introductions 05-08-2008, 04:12 PM
Replies: 4
Views: 770
Posted By Orc
More like Visual C++ xD IDE's But yes, welcome.

More like Visual C++ xD IDE's


But yes, welcome.
Forum: Absolute Beginners 05-05-2008, 08:40 AM
Replies: 13
Views: 1,019
Posted By Orc
Sorry, my code wasnt complete enough,...

Sorry, my code wasnt complete enough, here:

<?php

$string = "TEST-Aijnn-Bvvv-66-bb-ff";

$string = explode('-',$string);

$string =...
Forum: Absolute Beginners 05-05-2008, 07:48 AM
Replies: 13
Views: 1,019
Posted By Orc
Here you go: <?php $string =...

Here you go:


<?php

$string = "TEST-Aijnn-Bvvv";

$string = explode('-',$string);

$string = $string[0].'-'.$string[1].'-'.$string[2];
Forum: Tips & Tricks 03-19-2008, 04:54 AM
Replies: 16
Views: 1,254
Posted By Orc
Foreach

Just another method I guess :P

<?php
error_reporting(E_ALL);
$_GET = array();

$_GET['a'] = "Hello World!";

if ($_GET['a'])
{
Forum: Javascript, AJAX, E4X 03-10-2008, 04:40 AM
Replies: 17
Views: 3,062
Posted By Orc
No, you can detect the mouse, heres some code to...

No, you can detect the mouse, heres some code to get the position:


function CursorPosition(e)
{
if (!e) e = window.event;

var cursor = {x:0, y:0};

if (!e)
Forum: General 03-02-2008, 08:51 AM
Replies: 4
Views: 26,902
Posted By Orc
PHPBB3 Password Encryption

What Password Encryption method does PHPBB3 run under? I'm trying to create an integrated cms site that uses usernames and passwords from the forums ( phpbb3 ) to login to the main site.
Forum: The Lounge 02-16-2008, 06:51 AM
Replies: 3
Views: 688
Posted By Orc
Php 5.3

Some of PHP 6.0 Features/Functionality with be in PHP 5.3, Article:
What's new in PHP 5.3? [PHP & MySQL Tutorials] (http://www.sitepoint.com/article/whats-new-php-5-3)
Forum: Libraries & Extensions 02-11-2008, 11:34 PM
Replies: 3
Views: 2,359
Posted By Orc
Recommended over Zip/Zlib File Extraction

I've just tried the Library: PCLZIP, and it's fantastic! I had to extract zip files, and this worked magnificently faster and was very easy! :D


PhpConcept - PclZip (PhpConcept Library Zip)...
Forum: General 02-10-2008, 10:44 PM
Replies: 27
Views: 1,713
Posted By Orc
Thank you for clearing that up.

Thank you for clearing that up.
Showing results 1 to 25 of 42

 

All times are GMT. The time now is 06:31 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design