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
Re: 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] | |
Re: 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. | |
Re: [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 … |
The End.