Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
Ranked #3K
~3K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for anirban1087

Sure, but only if you place the PHP variables within PHP tags. [code]<input name="rate$i" id="rate$i" type="text" onkeyup="integeronly(this)" >[/code] Should be [code]<input name="rate<?php echo $i; ?>" id="rate<?php echo $i; ?>" type="text" onkeyup="integeronly(this)" >[/code]

Member Avatar for anirban1087
0
113
Member Avatar for eoop.org

You're not instantiating $x before adding to it on line 19. You're not instantiating $construct before adding to it on line 21 and 23. You're also not using [code]search_each[/code] in the SQL since it's not printed as a variable: [code]%search_each%[/code] should be [code]%{$search_each}%[/code] on lines 21 and 23.

Member Avatar for jtreminio
0
124
Member Avatar for adamworld

[CODE]GROUP_CONCAT(zip SEPARATOR ', ')[/CODE] edit: Sorry! First post and I messed up. Give me a few minutes and I'll get you a correct answer. edit II: If you're grabbing those ZIP codes from a DB to start with, the code above works. [CODE]/** * Format a provided array into human-readable …

Member Avatar for qazplm114477
0
3K

The End.