Jump to content

luisdgs19

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by luisdgs19

  1. Hehe thanks for the advice! i'll add all those features hopefully!
  2. I'm currently developing a new control panel for Athena SQL servers, WHY? To make a beautiful AJAX Based control panel so that you don't have to be loading new pages each time you access a link in the cp. To bring integration to your own website natively so you don't have to pay anyone to integrate it to your website. To bring a secure, simple , dummies friendly User control panel FEATURES AJAX to make navigation faster in the control panel Integration API for easy interation to any HTML5 based website. Support ticket center Report a player CMS To add server news etc . This just came up today , i want suggestions, opinions, haters, lovers everyone come around and insult my control panel so i can make it better! This is a preview of the home screen Anyone who wants to join me in the development of this CP throw me a message i will love any help i can come with !
  3. You can do this with a php file <?php $ip = 'localhost'; $user = 'usernameofmysql'; $pw = 'pwofmysql'; $db = 'dbofmysql'; $conn = mysql_connect($ip, $user, $pw) or die(mysql_error()); mysql_select_db($conn, $db); ?> This will only connect your website with your mysql database you will still need to do queries ex $query = 'SELECT * FROM table WHERE x = y'; $result = mysql_query($query) or die(mysql_error()); while ( $row = mysql_fetch_assoc($result) ) { echo "This is the result from each row:"; echo $row['columname']; } hope this helped a little
×
×
  • Create New...