Joined
Last Seen
-1 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 6
- Posts with Downvotes
- 1
- Downvoting Members
- 6
0 Endorsements
Ranked #72.8K
2 Posted Topics
While coding for an e-commerce website. I received warning about this: Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\shopping\store\index.php on line 194 This is my code: <?php include "connect.php"; $result1= mysql_query("SELECT * FROM internet_shop"); while($row=mysql_fetch_assoc($result1)) { echo ' <a rel="facebox" href="orderpage.php?id='.$row['id'].'&transnum='.$transnum.' "><img src="img/products/'.$row['img'].'" alt="'.htmlspecialchars($row['name']).' " width="109" height="109" … | |
|
The End.