| Thread | Last Post | Replies |
|
| Concatenating object methods | 31 Jan 2007 21:38 GMT | 3 |
I'm using PHP 5.2. I've created classes to embody HTML elements for a particular project I'm currently working on. All setter methods in the classes return $this so that I can string
|
| Sending a variable | 31 Jan 2007 18:07 GMT | 4 |
In foo.php I do (essentialy) header("Location: http://x.y.z/bar.php?".a000=1&Vtmpfname=".$Vtmpfname; where $Vtmpfname has a proper value, atleast I can see it if I echo it in foo.php.
|
| php4 w/TrackerCam | 31 Jan 2007 15:28 GMT | 2 |
Installed TrackerCam and it installs php v4.1.2 on the system as a webserver. I wanted to make some config changes, but I can't seem to find where it put the php.ini file.
|
| POST checkbox group | 31 Jan 2007 13:56 GMT | 3 |
Trying to send the data from a checkbox group to a php process and it's just sending the last box clicked as a variable, rather than the whole group as an array. Am I being stupid? ie html:
|
| Dumping an array to a web page | 31 Jan 2007 13:34 GMT | 5 |
Is there some quick way to dump an array to a webpage and have it show up neatly formatted rather than the typical blob-o-text? Thanks, --Yan
|
| how do you send a lot of data between scripts | 31 Jan 2007 11:44 GMT | 4 |
How can I send a lot of data from foo.php to bar.php ? This might happen if foo.php echo some text and bar.php returns an image that should be displayed below the text that was echo:ed, and foo.php must send a lot of data to bar.php.
|
| Group an array | 31 Jan 2007 10:16 GMT | 6 |
i have the following array: Array ( [0] => Array
|
| PEAR mailing problem | 31 Jan 2007 09:11 GMT | 2 |
I use the following code to send mails using php usinf PEAR package. When I run this code from command line using the command "php automaticMail.php" the code works fine. But when i run this script from browser it give the error :
|
| how to pass commandline argument to C program from PHP code | 31 Jan 2007 04:56 GMT | 3 |
hi frndz, As we know that, we can pass command line agrument for C using "scanf" commands, So as same as that, Is there any way to pass those commandline arguments through php code to C and process them. If there
|
| Question about a data structure | 31 Jan 2007 00:32 GMT | 12 |
I'm helping a friend with a website (aren't we all) that will have a long questionnaire. There will be about 150 data items, all of which will be chosen from radio buttons with four choices each. I'll store the resulting data in a MySQL data table, and I'm thinking I don't want ...
|
| php.ini for every vhost | 31 Jan 2007 00:05 GMT | 3 |
ooops, by mistake "I replied to author", sorry Klepr. I am also trying to use a seperate php.ini file for each vhost. Or, a php parameter in vhost definition to override default value, but it is not taking effect.
|
| Regular Expression question..simple! | 31 Jan 2007 00:00 GMT | 2 |
Hey everyone! I am banging my head on this regular expression problem. I want to validate US currency. So far I have '^(\.[0-9]+|[0-9]+(\. [0-9]*)?)$' but this fails if I use a commna (i.e. 2,000.00). Any help would be
|
| Login procedure | 30 Jan 2007 23:27 GMT | 1 |
Hi PHP experts, I would like to make a login screen, so that people who want to access information, have to enter a username and password. I know nothing of PHP and at the moment there simply isn't enough time to
|
| newbie error, very strange | 30 Jan 2007 22:03 GMT | 7 |
I've got a problem that I cant deal with: I've got a a simple class in a file browse.inc: <?php class Connection
|
| Date comparison issue | 30 Jan 2007 20:02 GMT | 2 |
I have a table with dates stored in a text field (designed before my time, I'm just stuck with the headaches). When I run the following query: SELECT DATE_FORMAT(datefield,'%m/%d/%Y') FROM computers where
|