Jump to content

lebedev9114

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

Everything posted by lebedev9114

  1. Thank you very much guys !
  2. Hi guys , i need some help. I have this loop : while ($row = mysql_fetch_assoc($Result)) { ?> <th><?php echo "<a href=http://".$row['booking_site'].">"; echo $row['bookingname']; echo "</a>"; ?> </th> <th><?php echo number_format($row['com'],0,'.',','); ?></th> <th><?php echo number_format($row['AlexaRanking'],0,'.',','); ?></th> 'com' - is an integeir i need help with replacing this $row['com'] IF the number is 0 with a DASH (-) how may i include an if an else statement or a prematch inside or outside the while loop?
  3. Basically that was a real table, i just didn't write it out completely. Basically I have a javascript code which sorts everything for me, but it sorts all columns in the table and the 1-100 i did not want to be sorted, so I wanted to make a new table on the left of this one having 1-100. here is how it looks like : www.etromnia.com i just uploaded so the sorting is not working yet.
  4. Sorry, might be getting everyone confused ! : <tr> <td height="32" id="topth">1 </td> </tr> <tr> <td id="topth">2</td> </tr> <tr> <td id="topth">3</td> </tr> <tr> <td id="topth">4</td> </tr> <tr> <td id="topth">5</td> </tr> <tr> <td id="topth2">6</td> </tr> <tr> <td id="topth3">7</td> </tr> <tr> <td id="topth4">8</td> </tr> <tr> <td id="topth5">9</td> </tr> <tr> <td id="topth6">10</td> </tr> <tr> <td id="topth7">11</td> </tr> <tr> <td id="topth8">12</td> </tr> <tr> <td id="topth9">13</td> </tr> <tr> <td id="topth10">14</td> </tr> <tr> <td id="topth11">15</td> </tr> <tr> <td id="topth12">16</td> </tr> <tr> <td id="topth13">17</td> </tr> <tr> <td id="topth14">18</td> </tr> <tr> <td id="topth15">19</td> </tr> ... </table> I want to insert php into this, so i don't have to keep wirting out eveyr single number out
  5. Actually I would want to work on a real web-site, so i am abit scared of the over loads. how about this : <table> while ($row = mysql_fetch_assoc($Result)) { ?> <th><?php echo $row['bookingname']; </table> Is it possible to do something like this inside a table with no database, only instead of getting a Result from the database, just have 1 - 100 autmoatically put in ?
  6. hi guys I am a newb in php need some help. I have a table with 1 column and 100 rows and in each i want to do a 1-100. Can someone give me the full coding for this, please I can get it to work. I guess i am supposed to use some kind of an array loop or a While statement , but i am really stuck so a table would look like this : 1 2 3 4 .... and instead of writing each number in side the table row , i want to do it in php any help I am thankful for !
  7. Thank you very much that worked ! I tried playing around with it several times, but i kept getting '1' as a result instead of 3,000,000 , and no errors so i didnt know what i was doign wrong !
  8. Hey guys I am in process of learning and creating my first real project online, and i need some help with the follwowing: while ($row = mysql_fetch_assoc($Result)) { ?> <tr> <th><?php echo $row['de'] ?></th> <th><?php echo $row['ru'] ?></th> <th><a href="getlink.php?id=<?php echo $row['id']; ?>">More Info</a></th> <th><?php echo $row['nl'] ?></th> I want to number_format() 'de', 'ru' , which are integers in the database, how do i do this inside or outside of the while statement? any help would be really appreciated !
  9. Thank you for the great posts, I got it to work !
  10. Hey, I am knew to php , any help would be appreciated. So in the database i want to create for example their is a name of a player Mark Macguire and I want to have another database field called MORE INFO , for every single following players name after Mark. the MORE INFO will direct a person to a new page . Here is what i got so far: <th><a href="/getlink.php?id=<?php echo $row['id']; ?>">More Info</a></th> I don't know however how to write the getlink.php which makes this code , work can anyone help out please!
×
×
  • 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.