| Thread | Last Post | Replies |
|
| 1st process' exit code | 15 Jul 2008 13:46 GMT | 1 |
Let's say I have two programs: 'foo' and 'bar'. 'foo' always returns an exit code of 10. 'bar' always exits normally (i.e. returns 0). If I do: `foo | bar` in my shell, the shell will return 10. If I do: exec('foo | bar', $ignoreMe, $returnCode) in PHP, $returnCode
|
| CDATA? | 15 Jul 2008 12:49 GMT | 8 |
Probably another question I could answer myself if I only found the right search term, but ... I have in some code I'm studying/trying to learn: ------------------------
|
| PHP | 15 Jul 2008 08:49 GMT | 1 |
Can anyone recommend me a good book on PHP. Thanks...
|
| bit handling function | 15 Jul 2008 01:29 GMT | 6 |
can anyone help me out with a bit handler? it seems as if php's decbin() removes leading zeroes when converting from hex....so for example decbin(hexdec()); basically removes any leading zeroes.
|
| PHP and MSSQL character encoding problem. | 14 Jul 2008 21:44 GMT | 2 |
I've a problem (which I believe is a character encoding problem) where I retrieve data from a MSSQL database and euro and pound sign symbols appear as ? when a do a print_r of the rows immediately after retrieving them from the database. The data can be seen correctly in the SQL ...
|
| Form Reloading | 14 Jul 2008 21:11 GMT | 7 |
I am creating a simple web site which will display user ads, so I have some forms they submit, here is a snippet of the code: <div class="createlisting"> <div class="clinput">
|
| How upload works? | 14 Jul 2008 18:15 GMT | 14 |
can nay body tell me how upload works? "well the code that i m using works fine with me i mean that the file uploadin is working but i m unable to find how it internal it works"? when the form posted from the html page it goes to some php file that
|
| GD or ImageMagick | 14 Jul 2008 16:37 GMT | 6 |
I need to rewrite some image resizing code from perl to php. Although I'm currently using Image Magick in perl, the function reference is so different, that I'll completely need to rewrite it. That gives me the option of using GD.
|
| PDF versions of PHP books? | 14 Jul 2008 16:04 GMT | 3 |
Are they pretty much the same as the hardcopy versions of the same books? Anything different about pdf ones vs. hardcopy ones? Thanks.
|
| Function to tell if IP address is in a range | 14 Jul 2008 14:18 GMT | 9 |
After failing to find this in my searches, I thought I'd ask here: Is there a php function that can tell me if an IP address falls within a range? Something like this:
|
| string comparison in php | 14 Jul 2008 12:35 GMT | 3 |
i am writing a small application where a user enters a phrase in the textfield and i would like to display all the files present in the root directory which consists of the keyword or keywords entered by the user.
|
| 5 brand new techniques in PHP+Javascript+CSS [AJAX] | 14 Jul 2008 11:31 GMT | 1 |
[Message copied to comp.lang.php, php.general, alt.comp.lang.php, alt.php] Hi, I started writing this blog some time back and it would be
|
| JSON | 14 Jul 2008 07:34 GMT | 1 |
I have a file that returns JSON data: <?php $q = strtolower($_GET["q"]); if (!$q) return;
|
| Which Is The Better Approach To Working With Javascript? | 14 Jul 2008 03:47 GMT | 91 |
Which is the better approach in working with Javascript? 1. Server side processing: Web server gets form input, runs it into the Javascript module, and PHP collects the output for document prep. 2. Client side processing: Web server gets form input and passes it to PHP
|
| Treating text copied from MS Word | 13 Jul 2008 23:23 GMT | 3 |
I've built a MySQL database for a client and a web interface to be able to add/edit/delete records in it. When he's adding stuff to the database he's copying text from MS Word. I've tried various substitutions that I've found hanging around the internet, but nothing's working ...
|