Forum: PHP Apr 1st, 2008 |
| Replies: 4 Views: 908 Hi, first let me suggest that you should think of some less complicated way of displaying the data. I guess you could achieve the same result with just about twenty lines of code.
But to answer... |
Forum: PHP Mar 26th, 2008 |
| Replies: 12 Views: 1,707 check for viruses:
your hosting must be allowed to execute files (which I seriously doubt)
you have to know where the antivirus program is and what parameters it expects
then use exec() to... |
Forum: PHP Mar 14th, 2008 |
| Replies: 4 Views: 2,488 All right, I can see that you know what you're doing :-)
Since your hacking it anyway, we won't mind using eval(), will we? (yuck!)
$string = "level1.level2a.level3=10";
list($combinedKey,... |
Forum: PHP Mar 12th, 2008 |
| Replies: 4 Views: 1,451 I agree with forzadraco: don't do this.
An attacker could simply call your page with:
page.php?string=;DELETE * FROM yourtable
and you're dead.
However, to answer your question, the function... |