<?php
include("includes/coect.php");
$select_posts = "select * from posts order by rand () LIMIT 10";
$run_posts = mysql_query($select_posts);
while($row=mysql_fetch_array($run_posts)){
$post_id = $row['post_id'];
$post_title = $row['post_title'];
$post_date = $row['post_date'];
$post_author = $row['post_author'];
$post_image = $row['post_image'];
$post_content = substr($row['post_content'],0,200);
?>
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in D:xampphtdocsmalalaindex.php on line 10
while($row=mysql_fetch_array($run_posts)){
<?php
include("includes/coect.php");
$select_posts = "select * from posts order by id LIMIT 10";
$run_posts = mysql_query($select_posts);
برچسب:
نویسنده: خنج