Friday, 31 August 2018
Subscribe to:
Post Comments (Atom)
<?php
mysql_select_db("test", $link);
$sql= "SELECT * FROM testimonials LIMIT 1";
$result = mysql_query($sql);
while($row = mysql_fetch_assoc($result)){
// var_dump($row['message']); die;
?>
<p>
<?php
echo $row['message']; ?>"<br/>
<div id="quote"><?php echo $row['first_name']. " " .$row['last_name'];?></div><div id="location"><?php echo $row['city']. " , " .$row['state'];?></div><br/>
<div class="readmore">
<a href="greenInformation.php">Click Here to view more</a>
</div></p>
<?php } ?>
$sql="SELECT * FROM `testimonials` ORDER BY RAND() LIMIT 1";
$sql="SELECT * FROM `testimonials` WHERE `id`=".mt_rand(1,500);
Hello Friends! I am Ramana a part time blogger from Hyderabad.
0 comments:
Post a Comment