Hi, i am currently on stage and have some small problems. I beleive that the problem might be because i did not configure my php.ini files or possibly a version conflict.
Firstly, when i use str_pad, there is absolutely no reaction.
CODE:
<?php
$P = "This is";
$R = "Just A";
$S = "Little Test";
print str_pad($P, 15)."".str_pad($R, 15)."".str_pad($S, 15);
?>
OUTPUT:
This is Just A Little Test .
As you can see, there is no reaction, so i attempted with characters to take over rather than spaces. I used dots and it works perfectly. I dont understand.
Second, i have uncommendet the snmp_dll in the php.ini file and it seems to run the code yet i always get the
"Warning: No Response from 198.10.0.194" message.
And i have tried with affirmative IP's. So if anyone can offer any help, i Would appreciate it alot.
Thanks Alot
MURDOC