No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
I'm not sure I understand what you are wanting, but if I am correct you should be able to do something to the effect of this. [code=php] <?php if (myquery()) { } else { ?> <script type="text/javascript"> $("#somediv").someJqueryFunction({some: 'json', data: 'parameters'}); </script> <?php } ?> [/code] I would prefer to …
Can you provide the error so we can have some idea what is going on?
I prefer this approach. [CODE] <?php for($i=1;$i<200;$i++) { echo $i. " ".convertNumtoLetter($i)."\n"; } for($i=1;$i<200;$i++) { echo $i. " ".convertNumtoLetter($i)." ". convertLettertoNum(convertNumtoLetter($i))."\n"; } function convertNumtoLetter($in) { $mod = $in%52; $outputStr = ''; if($in == 52) { return chr(asciiOffset($in)); } if($in-$mod==0) { $outputStr = chr(asciiOffset($in)); } else { if ($mod == 0) …
The End.
gamingdrunk