Search found 4 matches

by yayo
Sat Apr 09, 2005 9:02 pm
Forum: PHP - Code
Topic: Problem with array of a filter
Replies: 7
Views: 1525

and from the casa_sola_1.php

the name of the checkbox is like this

<code>
<input type="checkbox" name="id_producto[]" value="<?=$q_query["id_producto"];?>">
</code>
by yayo
Sat Apr 09, 2005 8:59 pm
Forum: PHP - Code
Topic: Problem with array of a filter
Replies: 7
Views: 1525

<? include ("includes/connect.inc"); ?> <? global $id_producto; if(isset($id_producto)) { for ($i = 0; $i < count($id_producto); $i++) { $id_house = $id_producto[$i]; //calling producto from query $query = mysql_query("SELECT * FROM producto WHERE id_producto = '$id_house'"); $q...
by yayo
Sat Apr 09, 2005 7:13 pm
Forum: PHP - Code
Topic: Problem with array of a filter
Replies: 7
Views: 1525

Great guys, I'm heading to my office right now, I'll post it in some minutes, thank you so much!
by yayo
Sat Apr 09, 2005 6:14 pm
Forum: PHP - Code
Topic: Problem with array of a filter
Replies: 7
Views: 1525

Problem with array of a filter

Hi everybody, hope somebody can help me with this that had been turned in a lot of headaches, lol Ok, I have this page for a costumer, it's a Real Estate site, so what my client wants is to find houses by state, zip code, and some other ones. I already did that, the problem comes next, 'cause when I...