Forum: PHP Jun 10th, 2008 |
| Replies: 9 Views: 941 Just an FYI, I found this that has PHP vs ASP market share statistics not sure what "pas de" means ...:
http://www.nexen.net/chiffres_cles/phpversion/18284-php_statistics_for_march_2008.php |
Forum: PHP Jun 10th, 2008 |
| Replies: 9 Views: 941 Sorry I know this thread is a bit dead, but in case other people come here looking for the same stats, the netcraft site shows APACHE vs MICROSOFT servers, not development languages. (unless I missed... |
Forum: PHP Nov 11th, 2005 |
| Replies: 5 Views: 11,170 NP ask if you have questions. |
Forum: PHP Nov 9th, 2005 |
| Replies: 5 Views: 11,170 I noticed the this forum stipped out my backslashes, so wherever you see "rn" in the headers area there needs to be a backslash, eg. \r\n |
Forum: PHP Nov 9th, 2005 |
| Replies: 5 Views: 11,170 This should be fairly easy for you to do. We'll use a two page method as that's pretty easy to do.
1. Point your form at your soon to be created php script. You should have some like below in your... |
Forum: PHP Nov 7th, 2005 |
| Replies: 6 Views: 98,350 In short you can't. But it's very easy to get the same confirmation that you would with a alert box.
1. Pass ID/Email of record along with the delete command, easiest to use a URL
e.g. <a... |
Forum: PHP Oct 17th, 2005 |
| Replies: 0 Views: 5,883 I was being really lazy and didn't want to write one up myself, couldn't find one, and ended writing one up myself anyways. Hope this helps other lazy people. |
Forum: Shell Scripting Jul 7th, 2005 |
| Replies: 1 Views: 9,332 Actually I kinda figured it out:
variable=`
mysql -u user --password=password << eof
use mydatabase;
SELECT version FROM versions WHERE versionid = 'LIST';
eof` |
Forum: Shell Scripting Jul 7th, 2005 |
| Replies: 1 Views: 9,332 #!bin/bash
mysql -u user --password=password << eof
use mydatabase;
SELECT version FROM versions WHERE versionid = 'LIST';
eof |