Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Template Shares
Reply
  #1  
Old 25th June 2013, 21:32
Ruffneck Ruffneck is offline
Senior Member
 
Join Date: Feb 2008
Posts: 70
Default class mysqli php database !
somebody can post this class for TS 5.6 ?

10x advanced !
Reply With Quote
  #2  
Old 25th June 2013, 21:55
firefly007's Avatar
firefly007 firefly007 is offline
SUPPORT GURU
 
Join Date: Jun 2010
P2P
Posts: 721
Default
Quote:
Originally Posted by Ruffneck View Post
somebody can post this class for TS 5.6 ?

10x advanced !
???

Please explain feature
__________________




Please Support Majority Report


You can contact me on Skype live:phesadent.elect but please let me know first.


If you are ever need me desperately then please email me at dan.oak44@gmail.com and I will contact u within a week.


Due to free time I'm able to help interested member's with their tracker.

Please Note!
Depending on your requests I will charge you for my assistance for Tracker installs and mods.
All my mods are custom and prices will very depending on the request.
I'm able to install any tracker and mods including themes.

Please PM me

Reply With Quote
  #3  
Old 26th June 2013, 11:24
Ruffneck Ruffneck is offline
Senior Member
 
Join Date: Feb 2008
Posts: 70
Default
TS 7.2 class_ts_database.php is used mysql ext !

i wanna make mysqli ext !

because php 5.5.0 is not supported mysql ext !

sorry 4 bad english !
Reply With Quote
  #4  
Old 26th June 2013, 15:57
firefly007's Avatar
firefly007 firefly007 is offline
SUPPORT GURU
 
Join Date: Jun 2010
P2P
Posts: 721
Default
Quote:
Originally Posted by Ruffneck View Post
TS 7.2 class_ts_database.php is used mysql ext !

i wanna make mysqli ext !

because php 5.5.0 is not supported mysql ext !

sorry 4 bad english !

Look at this....

Taken from
http://www.w3schools.com/php/php_mysql_select.asp

PHP Code:
<?php
$con
=mysqli_connect("example.com","peter","abc123","my_db");
    
// Check connection
    
if (mysqli_connect_errno())
  {
  echo 
"Failed to connect to MySQL: " mysqli_connect_error();
  }

$result mysqli_query($con,"SELECT * FROM Persons");

echo 
"<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>"
;

while(
$row mysqli_fetch_array($result))
  {
  echo 
"<tr>";
  echo 
"<td>" $row['FirstName'] . "</td>";
  echo 
"<td>" $row['LastName'] . "</td>";
  echo 
"</tr>";
  }
echo 
"</table>";

mysqli_close($con);
?>
__________________




Please Support Majority Report


You can contact me on Skype live:phesadent.elect but please let me know first.


If you are ever need me desperately then please email me at dan.oak44@gmail.com and I will contact u within a week.


Due to free time I'm able to help interested member's with their tracker.

Please Note!
Depending on your requests I will charge you for my assistance for Tracker installs and mods.
All my mods are custom and prices will very depending on the request.
I'm able to install any tracker and mods including themes.

Please PM me

Reply With Quote
  #5  
Old 26th June 2013, 22:32
Ruffneck Ruffneck is offline
Senior Member
 
Join Date: Feb 2008
Posts: 70
Default
10x !!!!!
Reply With Quote
Reply

Tags
class , database , mysqli , php

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 00:52. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.