Jump to content

Plzz help with vote script


JankaZ

Recommended Posts

Can someone please help with vote script. I pres button and vote for song and its count to thats song id!

 

<table border=1>
  <tr>
   <th>Nr</th>
   <th>Albums</th>
   <th>Izpilditajs</th>
   <th>Dziesma</th>
  </tr>

<?php
$con = mysql_connect("localhost","root","1991jz9969470");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("top", $con);
//Izveido query
$query = mysql_query("select * from top");

//dabu visus datus no db 
while ($row = mysql_fetch_array($query)){

$id = $row['id'];
$albums = $row['albums'];
$izpilditajs = $row['izpilditajs'];
$dziesma = $row['dziesma'];

?>

  <tr>
   <th><?php echo $id;?></th>
   <th><?php echo $albums;?></th>
   <th><?php echo $izpilditajs;?></th>
   <th><?php echo $dziesma;?></th>
  </tr>

<?php } //If beigu zime ?>

Link to comment
https://forums.phpfreaks.com/topic/202261-plzz-help-with-vote-script/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.