Jul 20, 2008

Make Your Own Phpmyadmin

Free Web Hosting, No Ads > CONTRIBUTE > Tutorials

free web hosting

Make Your Own Phpmyadmin

hippiman
First of all, I'm letting you know that this is nowhere near as good as PHPMyAdmin. It's just a tutorial on how to view all your databases, tables, and what's in the tables, and be able to edit the tables. I haven't even put in a way to add databases, tables, or columns (yet). This was just a test thing I made up to see if I knew what I was doing with PHP and MySql.

Feel free to ask any questions. That's why I'm here. If I don't know the answer, I'll be glad to look it up or ask someone that knows. I need credits!!!

Now, as you've probably seen in other tutorials, you need to create a "config.php". It will have connect you to MySql.
CODE
<?php
  $dbserver="localhost";
  $user="root";
  $passwd="password";
  $connect=mysql_connect($dbserver,$user, $passwd);
?>

Once you have that, you need to make your "index.php", or whatever you want to call it. Put it in the same directory as your config file.

Now, you need to have it show your databases. (If you don't have permission to do "SHOW DATABASES", then this part wont work.)

CODE
echo "<center><h1>Databases:</h1>";

$sql = "SHOW DATABASES;";
$result = mysql_query($sql, $connect);

?><form method='POST'><select name='dbselect' size='5'>"<?php    //the select tag is a drop down list to select the database.
for($i=0;$i<mysql_numrows($result);$i++) {
  $data = mysql_result($result,$i,"database");
  if($data!="information_schema" && $data != "mysql")  //Those two databases are MySql's, I don't want to mess with them.
    if($_POST['dbselect']==$data) echo "<option selected>" . $data . "</option>";
    else echo "<option>" . $data . "</option>";    //If there's already a DB selected, it will stay selected when you reload.
}
echo "</select><input type='submit' value='USE DATABASE'></form>";//the input is the button to select the DB

Next, if there is a DB selected(in the POST), then it will call our getTables function.
CODE
if($_POST['dbselect']) getTables($_POST['dbselect'],$connect);
function getTables($db, $connect) {
  mysql_select_db($db);   //select the DB
  $sql="SHOW TABLES;";
  $result=mysql_query($sql,$connect);
  
  echo "<h1>" . $db . ":</h1>"; //display the name of the DB
  echo "<form method='POST'><input name='dbselect' type='hidden' value='" . $db . "'><input name='tbselect' type='hidden' value='" . $_POST['tbselect'] . "'><select name='tbselect' size=5>"; //Makes sure when you select the table, the DB is selected
  for($i=0;$i<mysql_numrows($result);$i++) {
    $data= mysql_result($result, $i, "tables_in_" . $db);
    if($_POST['tbselect']==$data) echo "<option selected>" . $data . "</option>";  //keeps the table selected
    else echo "<option>" . $data . "</option>";
  }
  echo "</select><input type='submit' value='SELECT * FROM'></from>"; //button to select everything from the table.
}

Once you've selected the table, you need to display the data.
CODE
if($_POST['tbselect']) selectAll($_POST['dbselect'],$_POST['tbselect'],$connect);
function selectAll($db, $tb, $connect) {
  mysql_select_db($db);
  $sql="SHOW COLUMNS FROM " . $tb . ";";
  $result=mysql_query($sql,$connect);
  
  echo "<h1>" . $tb . ":</h1>";  //show the name of the selected table.
  echo "<form method='POST'><input name='dbselect' type='hidden' value='" . $db . "'><input name='edited' type='hidden' value='1'>";  //Keep the DB and table selected
  echo "<table border='1'><tr>";
  for($i=0;$i<mysql_numrows($result);$i++) {  //shows the names of the columns at the top of the table
    echo "<td>" . mysql_result($result, $i, "field") . "</td>";
    $colnames[$i]=mysql_result($result, $i, "field");
  }
  $numcols=$i;
  echo "</tr>";
  
  $sql="SELECT * FROM " . $tb . ";";
  $result=mysql_query($sql,$connect);
  $numrows=mysql_numrows($result);

  for($y=0;$y<$numrows;$y++) { //these loops make txtBoxes so you can change the data in the table.
    for($x=0;$x<$numcols;$x++) {
      if(!$x) echo "<td>" . mysql_result($result, $y, $colnames[$x]) . "</td>"; //echoes the ID without a txtBox.
      else echo "<td><input name='" . ($x + $y*$numcols) . "' type='text' value='" . mysql_result($result, $y, $colnames[$x]) . "'></td>";  //($x+$y*numcols) is which TD it is from left to right, then top to bottom(like reading)
    }
    echo "</tr>";
  }
  echo "</form><form method='POST'><input type='hidden' name='newrow' value='asdf'><input type='hidden' name='dbselect' value='" . $db . "'><input type='hidden' name='tbselect' value='" . $tb . "'><tr>";//form to add a row
  for($x=0;$x<$numcols;$x++){
    if($x) echo "<td><input type='text' name='" . $x . "'></td>";
    else echo "<td><input type='Submit' value='Add New Row'</td>";
  } //makes an extra row so you can add a row if you need to.
  echo "</form></table>";
  echo "<form method='POST'>Delete row by id:<input type='text' name='delete'><input type='hidden' name='dbselect' value='" . $db . "'> <input type='hidden' name='tbselect' value='" . $tb . "'></form>"; //form that deletes a row
  
}

Next, you need to be able to Update the table. If they submit the update form, it will change the values in the DB.
CODE
if($_POST['edited']) {
  updateTable($_POST['dbselect'], $_POST['tbselect'], $connect);
  echo "<br>Table Updated.";
}
function updateTable($db, $tb, $connect) {
  mysql_select_db($db);
  $sql="SHOW COLUMNS FROM " . $tb . ";";
  $result=mysql_query($sql, $connect);
  $numcols=mysql_numrows($result);

  for($i=0;$i<$numcols;$i++) {
    $colname[$i]=mysql_result($result, $i, "field");
  } //gets the names of the columns

  $sql="SELECT * FROM " . $tb . ";";
  $result=mysql_query($sql, $connect);
  $numrows=mysql_numrows($result);

  for($y=0;$y<$numrows;$y++) { //these loops make the update string in the format "UPDATE table SET column = value WHERE //id=idOfRow (One for every row)
    $sql="UPDATE " . $tb . " SET ";
    for($x=0;$x<$numcols-1;$x++){//$numcols-1 because we're not changing the ID
      $sql .= $colname[$x+1] . "='" . $_POST[($x+$y*$numcols+1)] . "'";
      if($x!=$numcols-2) $sql .= ","; //adds a comma if there's another column to add
    }
    $sql .= " WHERE id=" . ($y+1) . ";";
    mysql_query($sql,$connect);
  }
}

Next, (we're almost done) you need to make a way to add a row. If they submitted the addRow form, it will add the row.
CODE
if($_POST['newrow']) addRow($_POST['dbselect'],$_POST['tbselect'],$connect);
function addRow($db, $tb, $connect) {
  mysql_select_db($db);
  $sql="SHOW COLUMNS FROM " . $tb . ";";
  $result=mysql_query($sql, $connect);
  $numcols=mysql_numrows($result);
  for($i=0;$i<$numcols;$i++) {
    if(mysql_result($result, $i, "field")!="id") $colname[$i]=mysql_result($result, $i, "field");
  }  //gets the names of the columns
  $sql="INSERT INTO " . $tb . "(";
  for($x=0;$x<$numcols;$x++){
    if($colname[$x]) $sql .= $colname[$x];
    if($x!=$numcols-1 && $x) $sql .= ",";
  } //doesn't insert into the id column, it's auto_increment
  $sql .= ") VALUES (";
  for($x=0;$x<$numcols;$x++){
    if($x) $sql .= "'" .  $_POST[$x] . "'";
    if($x!=$numcols-1 && $x) $sql .= ",";
  }
  $sql .=");";
  mysql_query($sql,$connect);
}

Finally, the last function. A function to delete a row by its ID. If they've submitted the delete form, it deletes the row they entered.
CODE
if($_POST['delete']) {
  mysql_select_db($_POST['dbselect']);
  $sql="DELETE FROM " . $_POST['tbselect'] . " WHERE id=" . $_POST['delete'] . ";";
  mysql_query($sql,$connect);
}


Here is my entire code:
CODE
<head><title>LOCALHOST</title></head>
<center><a href='tradedvds'>Trade Dvds</a></center>
<center><a href='forum'>Forum</a></center>
<?
require_once("config.php");

echo "<center><h1>Databases:</h1>";

$sql = "SHOW DATABASES;";
$result = mysql_query($sql, $connect);

?><form method='POST'><select name='dbselect' size='5'>"<?
for($i=0;$i<mysql_numrows($result);$i++) {
  $data = mysql_result($result,$i,"database");
  if($data!="information_schema" && $data != "mysql")
    if($_POST['dbselect']==$data) echo "<option selected>" . $data . "</option>";
    else echo "<option>" . $data . "</option>";
}
echo "</select><input type='submit' value='USE DATABASE'></form>";

function getTables($db, $connect) {
  mysql_select_db($db);
  $sql="SHOW TABLES;";
  $result=mysql_query($sql,$connect);
  
  echo "<h1>" . $db . ":</h1>";
  echo "<form method='POST'><input name='dbselect' type='hidden' value='" . $db . "'><input name='tbselect' type='hidden' value='" . $_POST['tbselect'] . "'><select name='tbselect' size=5>";
  for($i=0;$i<mysql_numrows($result);$i++) {
    $data= mysql_result($result, $i, "tables_in_" . $db);
    if($_POST['tbselect']==$data) echo "<option selected>" . $data . "</option>";
    else echo "<option>" . $data . "</option>";
  }
  echo "</select><input type='submit' value='SELECT * FROM'></from>";
}

function selectAll($db, $tb, $connect) {
  mysql_select_db($db);
  $sql="SHOW COLUMNS FROM " . $tb . ";";
  $result=mysql_query($sql,$connect);
  
  echo "<h1>" . $tb . ":</h1>";
  echo "<form method='POST'><input name='dbselect' type='hidden' value='" . $db . "'><input name='edited' type='hidden' value='1'>";
  echo "<table border='1'><tr>";
  for($i=0;$i<mysql_numrows($result);$i++) {
    echo "<td>" . mysql_result($result, $i, "field") . "</td>";
    $colnames[$i]=mysql_result($result, $i, "field");
  }
  $numcols=$i;
  echo "</tr>";
  
  $sql="SELECT * FROM " . $tb . ";";
  $result=mysql_query($sql,$connect);
  $numrows=mysql_numrows($result);

  for($y=0;$y<$numrows;$y++) {
    for($x=0;$x<$numcols;$x++) {
      if(!$x) echo "<td>" . mysql_result($result, $y, $colnames[$x]) . "</td>";
      else echo "<td><input name='" . ($x + $y*$numcols) . "' type='text' value='" . mysql_result($result, $y, $colnames[$x]) . "'></td>";
    }
    echo "</tr>";
  }
  echo "</form><form method='POST'><input type='hidden' name='newrow' value='asdf'><input type='hidden' name='dbselect' value='" . $db . "'><input type='hidden' name='tbselect' value='" . $tb . "'><tr>";
  for($x=0;$x<$numcols;$x++){
    if($x) echo "<td><input type='text' name='" . $x . "'></td>";
    else echo "<td><input type='Submit' value='Add New Row'</td>";
  }
  echo "</form></table>";
  echo "<form method='POST'>Delete row by id:<input type='text' name='delete'><input type='hidden' name='dbselect' value='" . $db . "'> <input type='hidden' name='tbselect' value='" . $tb . "'></form>";
  
}
function updateTable($db, $tb, $connect) {
  mysql_select_db($db);
  $sql="SHOW COLUMNS FROM " . $tb . ";";
  $result=mysql_query($sql, $connect);
  $numcols=mysql_numrows($result);

  for($i=0;$i<$numcols;$i++) {
    $colname[$i]=mysql_result($result, $i, "field");
  }

  $sql="SELECT * FROM " . $tb . ";";
  $result=mysql_query($sql, $connect);
  $numrows=mysql_numrows($result);

  for($y=0;$y<$numrows;$y++) {
    $sql="UPDATE " . $tb . " SET ";
    for($x=0;$x<$numcols-1;$x++){
      $sql .= $colname[$x+1] . "='" . $_POST[($x+$y*$numcols+1)] . "'";
      if($x!=$numcols-2) $sql .= ",";
    }
    $sql .= " WHERE id=" . ($y+1) . ";";
    mysql_query($sql,$connect);
  }
}  
function addRow($db, $tb, $connect) {
  mysql_select_db($db);
  $sql="SHOW COLUMNS FROM " . $tb . ";";
  $result=mysql_query($sql, $connect);
  $numcols=mysql_numrows($result);
  for($i=0;$i<$numcols;$i++) {
    if(mysql_result($result, $i, "field")!="id") $colname[$i]=mysql_result($result, $i, "field");
  }
  $sql="INSERT INTO " . $tb . "(";
  for($x=0;$x<$numcols;$x++){
    if($colname[$x]) $sql .= $colname[$x];
    if($x!=$numcols-1 && $x) $sql .= ",";
  }
  $sql .= ") VALUES (";
  for($x=0;$x<$numcols;$x++){
    if($x) $sql .= "'" .  $_POST[$x] . "'";
    if($x!=$numcols-1 && $x) $sql .= ",";
  }
  $sql .=");";
  mysql_query($sql,$connect);
}

if($_POST['dbselect']) getTables($_POST['dbselect'],$connect);
if($_POST['edited']) {
  updateTable($_POST['dbselect'], $_POST['tbselect'], $connect);
  echo "<br>Table Updated.";
}
if($_POST['delete']) {
  mysql_select_db($_POST['dbselect']);
  $sql="DELETE FROM " . $_POST['tbselect'] . " WHERE id=" . $_POST['delete'] . ";";
  mysql_query($sql,$connect);
}
if($_POST['newrow']) addRow($_POST['dbselect'],$_POST['tbselect'],$connect);
if($_POST['tbselect']) selectAll($_POST['dbselect'],$_POST['tbselect'],$connect);

mysql_close();

?>

You should just be able to copy it, but I don't know if the Code thing made stuff go onto other lines. It should still work though. You can change use this code however you want. It took me forever to figure out, but it works. If anyone has any suggestions on how to make my code any shorter, they're welcome, but this is as short as I could get it. I might add more functionality to it later. I hope it's helpful.

 

 

 


Reply

mallumedia
this is lot to do...anyway thanx man

Reply

Damen
Yes I agree it is a lot to do but it is very helpful. Me and hippiman and rl friends and I showed him everything he knows...lol well not really. But we figured lots of stuff out by ourselves.

Reply

html
Thanks hippiman for sharing a phpmyadmin scripts this is good for the web deveopler
Thanks for such a superb tutorial

Reply

ShaggytheClown
Nice tutorial hippiman smile.gif

Reply

lailai
Wow! Nice tutorial! Thank you for sharing how to make a phpmyadmin...
I coudn't understand most parts, but anyway thanks

Reply

games4u
This is an excellent tutorial. I could see that hippiman is sad that this is not as good as phpMyAdmin.
An equally good phpMyAdmin can be created.
I learnt the basics of php and MySql at w3schools and it gives me a good idea to create a good phpMyAdmin combining php, MySql, and XML.
So any one interested may visit the site. smile.gif

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Similar Topics

Keywords : make, phpmyadmin

  1. Make Money Online [SPAM]
    (0)
  2. Lazy People Can Make Money Too
    (3)
    Making a website from scratch, not to mention one with all the fancy scripts to make it able to
    update automatically, is no walk in the park. So what do you do if you want to make money, quickly,
    painlessly and most importantly automatically? Here is one way - "Auto Niche Video Sites". These
    websites pull videos from Youtube based on your keyword. You can monetize this type of sites using
    Adbrite, Bidvertiser or with any other affiliate products. Don't use Adsense with this type of
    sites as it is against Google TOS. The success of these sites is purely based on the....
  3. Make An Online Game To Earn Money
    Mainly for students (2)
    Hi im New but i have discoverd a way to make money its quite simple /biggrin.gif"
    style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />. I always wanted to make my
    own game then i heard of mc codes i downloaded it and it took me about 2 months to setup /ohmy.gif"
    style="vertical-align:middle" emoid=":o" border="0" alt="ohmy.gif" /> , Yup it took me long because
    this was my first time editing script and im still a newbie cant blame me im only 15 /tongue.gif"
    style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> any way i made money....
  4. Is The Database System Gone Again?
    Errors on PHPMyAdmin again (10)
    I wonder if there is a problem with the PHPMyAdmin system again? When trying to get into it, I once
    again get the following: QUOTE Warning: session_write_close() : SQLite: session write query
    failed: database is full in /usr/local/cpanel/base/3rdparty/phpMyAdmin/index.php on line 42
    Warning: session_write_close() : Failed to write session data (sqlite). Please verify that the
    current setting of session.save_path is correct
    (/var/cpanel/userhomes/cpanelphpmyadmin/sessions/phpsess.sdb) in
    /usr/local/cpanel/base/3rdparty/phpMyAdmin/index.php on line 42 Warning: Ca....
  5. Timer
    is it possible in vb 6.0 to make a while statement which executes ever (3)
    Is it possible in vb 6.0 to make a while statement which executes every 10 minutes? Any ideas?....
  6. Best Way To Make Money From Your Website?
    (5)
    I'd like to start a website that offers a free service, yet in order to keep this service going
    I will need a small income...any ideas? I know about adsense and whatnot but I would like something
    more.....
  7. Some Of The Biggest Questions In Life.
    Things that make you go hmmmm... (2)
    NUMBER ONE! The current world record for a 100m dash is 9.72 seconds right?? But it's been
    broken before and it's more than likely that at some point it will be broken. So what is the
    highest that the 100m dash record will ever go. Technically there is no maximum that the record can
    get to right? I mean you can always go a bit faster. But there also must be a limit to how fast
    people can travel right? Everyone says you cant go faster than the speed of light, as we know the
    speed of light equals 299 792 458 m / s right? So the maximum time that you can do it ....
  8. How To Make A View New Post Script?
    (5)
    Ok so i'm still working on the forum software i posted about a while back, but I have no idea
    how to do this. I want to make a view new post script, as this is one of the main things that my
    forum software dose not have that all other forums have. so does any body have an idea on how i
    would do this? Thanks.....
  9. Selling My Mccodes License
    MAKE YOUR OWN MMORPG (3)
    If you would like to make your own mmorpg, you need mccodes. It is a simple edit and upload set of
    codes where you can make and mmorpg and make money. I have the best set of codes they have to offer
    which costs $300 USD brand new. I havent found time to make a MMORPG so if you would like to
    purchase these for $50 or maybe a few dollars less please do let me know because I cant use
    them, I have no time! And I am sure one of you guys would like to set up your own MMORPG!
    THanks and please PM me if you are interested! Peace out guys and thanks!....
  10. Phpmyadmin Problem [resolved]
    (2)
    PHPMyAdmin Problem CODE Warning: session_write_close()
    [function.session-write-close]: SQLite: session write query failed: database is
    full in /usr/local/cpanel/base/3rdparty/phpMyAdmin/index.php on line 42 Warning:
    session_write_close() [function.session-write-close]: Failed to write session
    data (sqlite). Please verify that the current setting of session.save_path is correct
    (/var/cpanel/userhomes/cpanelphpmyadmin/sessions/phpsess.sdb) in
    /usr/local/cpanel/base/3rdparty/phpMyAdmin/index.php ....
  11. Windows Vista Sp1
    Does it make Vista a viable OS to upgrade to? (0)
    Has anyone actually been satisfied with the release of SP1 for Vista? Does it solve the problems
    that we've all griped about? Overview of Windows Vista SP1 From what I'm reading
    from that document, I'm actually surprised, appalled, and in a way, now wondering if Vista can
    actually be an upgrade. I laughed at: QUOTE Enhances support for high-definition (HD)
    drives by adding new icons and labels that identify HD-DVD and Blu-ray drives as HD drives.
    That's awesome. I never knew the HD drive that I bought was an HD until SP1. /rolleye....
  12. Make Money Online Blog
    (1)
    Hi, I need people to help me to review or give comments about my blog: bloggingdotprofits.com
    One area lacking is content, how about other factors? Thanks in advance. /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />....
  13. Make Money Using Youtube And Adsense
    Make money (10)
    Well if you hace a adsense account and a youtube account and you have more than 200 subscribers, get
    lots of views in your videos then you can start putting ads onyour videos and everytime some click
    on that ad you get money. I think this is a good way to earn money but you need to have alot of
    requirements. And the response takes for ever i sent them a Email to become a youtube parnert (that
    is what is call) and they told me no 2 weeks later!!! Want to become a youtube parnert
    here is the link... http://www.youtube.com/partners And you get more feature....
  14. Make Money Using Chacha
    very easy and legit (1)
    If anyone wants to become a guide at chacha.com; I have up to like 20 invites. give me your name
    and email and i'll invite the first 20 people. When I get more invites i'll invite more
    people. Here's some news articles about chacha:
    http://abcnews.go.com/GMA/TakeControlOfYourLife/ http://news.com.com/2100-1038_3-6109782.html ....
  15. How To Make Your Own Counter Strike Source Dedicated Server!
    (2)
    Ok, so you want to host your own CSS Server on your computer eh? Well you will not need a lot of
    things, and it is very simple. All you will need is time. /biggrin.gif"
    style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> I did this tutorial
    myself, from my experience when I made my own CSS Server. This is just a simple tutorial! It
    ONLY covers the basics of making a CSS server! Lets Get Started! /laugh.gif"
    style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif" /> 1. Download the HLDS
    Update Tool from here . 2. On....
  16. Post Your Favorite Easy To Make Meal.
    add ingredients and instructions (16)
    Heres mine =) TATER TOT HOTDISH Ingredients. A bag of tator tots. 2 cans of cream of mushroom
    soup (any cream soup can be substituted for optional flavor) 2 lb. of ground beef 1 can of corn (or
    any other desired vegetable(s)) Instructions. Cook the hamburger and strain the fat. Spread the
    hamburger into a baking dish then pour the soup and can of vegetables over. Stir until mixed well.
    Cover the mixture with tator tots and Bake for the amount of time it says for the tator tots to get
    done and add 5 minutes. (or until mixture is boiling and tator tots are crisped.)....
  17. Runescape Private Server
    How to make your own private server and make runescape cash with it :) (51)
    First off you need a source: You can download one of these. QUOTE Cheezscape 80 -
    http://www.megaupload.com/?d=W8NCP0YC Cheezscape Pk - http://www.megaupload.com/?d=SOK1SPVR
    Project 16 V.6 Edit 8 - http://rapidshare.com/files/10028200...DIT_8.rar.html Project 16 v3 -
    http://www.megaupload.com/?d=ZFYG6T8B Project 16 Blitz -
    http://d.turboupload.com/d/1544978/P16_Blitz.rar.html Project16 V.6 Full Source -
    http://files.filefront.com//;5486316;;/ Project16 V.6 Full Source -
    http://www.megaupload.com/?d=IAO4H58V Project16 V.6 Full Source - http://rapidshar....
  18. Can I Make Dynamic Menu In Php
    is it posible to make dynamic menu in php without javascript (7)
    As there are many java script by which we can have event based interaction like,message on mouse
    over etc,that we can create dynamic menu in javascripts to make navigation bar ,but is it possible
    in php to have this acomplished without javascripts,i am new to php,is it possible?. Thanks....
  19. How Do I Make My Own Private Online Server Please Help Me Out.thank You For Your Time.
    (22)
    can someone tell me how to make my very own online private server.Please help me out.This is really
    pissing me off since no one will help me out.Thank you for your time.....
  20. Scrolling Images?
    How to Make an Image Scroll With the Page (5)
    I'm trying to make my homepage look a little fancier and I've got a nice background image,
    but I want it to scroll with my page, like if you scroll down the image will still appear like it
    does on the top of the page. Can someone tell me how to do this? I'm using Microsoft Frontpage
    to edit it. I'm not sure what programming language this would be, probably CSS or Javascript,
    but I can edit the page script with Notepad or something to make this work. Right now the page is
    purely HTML, so whichever language this is, can somebody also give me the tags and ma....
  21. Windows Vista Tranformation Pack
    Make you computer look like Vista (73)
    Ok, some people here have probabely been trying to make their computer look like Windows Vista. I
    have to, i found themes and so on but nothing i like they were all crusty, i searched and searched.
    And found one, The Vista Transformation Pack 4.0 (They will probabely make new versions of it).
    http://www.softpedia.com/get/System/OS-Enh...tion-Pack.shtml It contains everything # Icons #
    Themes # Visual Themes # Bootscreen # Login Screen # Sounds # Transparency # Start Menu Changes
    (WIth Vista Button inseat of start) --Thats all i can think of but there probabely more.....
  22. How Do I Make Gold Fast In Runescape/
    (116)
    OK i have been playin for liken 4 years and i still can't get alot of gp. the mosti have had in
    that time is like 10k and i have googled cheat codes and all that stuff and nothing works so any
    ideas are welcome.....
  23. How Do I Make A Live Chat Using Php?
    (15)
    i wish to make a live chat room for my website there is need for a certain group to discuss online
    the problem is how do i design and execute one? i wish to use php but if there are better languges i
    would still want to know what do i need to know and what do i need?....
  24. How To Make Your Pc Work Faster
    get your pc working unbelievably fast in 5 minutes !! (16)
    Here you can find useful tips you can do to make your pc work faster in a few minutes , just follow
    these tips and you will definitely have a much faster and more reliable PC! QUOTE 1.
    Wallpapers: They slow your whole system down, so if you're willing to compromise, have a basic
    plain one instead! 2. Minimizing: If you want to use several programs at the same time then
    minimize those you are not using. This helps reduce the overload on RAM. 3. Boot Faster: The
    'starting Windows 9x , xp' message on startup can delay your booting for a couple ....
  25. Make Your Own Mmorpg
    Gaming Engine (37)
    check out the konfuze.com website, they are a great community. they are always in development but
    this program allows you to create your own mmorpg. it gives you a server and client package so if
    you turn the server on and have the client avalable for downlaod on your website, they can connect
    to your server and play your MMORPG Go check thier site out site link expired. check posts below
    for alternatives. ....
  26. Does Anyone Know How To Make Exe Files
    (17)
    Does anyone know any software for making exe files, I want to make simple programs not propper
    one's. Thanks.....
  27. Here's Some Jokes To Make You Laugh A Little.
    Jokes Jokes Jokes... (5)
    Moved over to Jokes section from Creativity forum. hey here's a couple of jokes for you. you
    could post some jokes too just for fun.. Joke #1 A man's wife asks him to go to the store to buy
    some cigarettes. So he walks down to the store only to find it closed. So he goes into a nearby bar
    to use the vending machine. At the bar he sees a beautiful woman and starts talking to her. They
    have a couple of beers and one thing leads to another and they end up in her apartment. After
    they've had their fun, he realizes its 3AM and says, "Oh no, its so late, my wif....
  28. Name 3 Things That Make You Real Mad
    (78)
    Hi Here are my three to get this started: 1) I hate when I see humans mistreating animals for no
    reason. 2) I hate dumb people, I mean I really do. When confronted with someone that is plain dumb
    I get irrate. /mad.gif' border='0' style='vertical-align:middle' alt='mad.gif' /> 3)
    Disrespect. When someone talks to you like your are a piece of chewed gum on the pavement. I also
    hate it when I see someone else being the victim of this. Like a customer in a restaurent being rude
    to a waiter/waitress just because he can. So what gets your blood boiling? /wink.gi....
  29. Could Someone Make A Php Script For Me?
    Script to manage clans and players (3)
    Does someone know a script where you can 1. Add clans to a roster 2. Edit clans on a roster 3. Add
    players too a clan 4. Edit players 5. Schedule matches 6. Add clan Leaders to manage their own clan
    + members 7. Add members to edit their own information And maybe some sort of scoreboard integrated
    where you can put Wins, Draws and loses and that automaticly puts best clans on the top? If there
    isnt such a script could someone create 1 for me? (its for a league ^^)....
  30. Key Logger.
    How To Make (34)
    Hi Pe /cool.gif' border='0' style='vertical-align:middle' alt='cool.gif' /> ple ,
    Can Any One Tell me how to build a Keylogger on Visual Bais 6.0 that no one
    could see on the End Task Menu....

    1. Looking for make, phpmyadmin

Searching Video's for make, phpmyadmin
Similar
Make Money
Online
[SPAM]
Lazy People
Can Make
Money Too
Make An
Online Game
To Earn
Money -
Mainly for
students
Is The
Database
System Gone
Again? -
Errors on
PHPMyAdmin
again
Timer - is
it possible
in vb 6.0 to
make a while
statement
which
executes
ever
Best Way To
Make Money
From Your
Website?
Some Of The
Biggest
Questions In
Life. -
Things that
make you go
hmmmm...
How To Make
A View New
Post Script?
Selling My
Mccodes
License -
MAKE YOUR
OWN MMORPG
Phpmyadmin
Problem
[resolved]
Windows
Vista Sp1 -
Does it make
Vista a
viable OS to
upgrade to?
Make Money
Online Blog
Make Money
Using
Youtube And
Adsense -
Make money
Make Money
Using Chacha
- very easy
and legit
How To Make
Your Own
Counter
Strike
Source
Dedicated
Server!
Post Your
Favorite
Easy To Make
Meal. - add
ingredients
and
instructions
Runescape
Private
Server - How
to make your
own private
server and
make
runescape
cash with it
:)
Can I Make
Dynamic Menu
In Php - is
it posible
to make
dynamic menu
in php
without
javascript
How Do I
Make My Own
Private
Online
Server
Please Help
Me Out.thank
You For Your
Time.
Scrolling
Images? -
How to Make
an Image
Scroll With
the Page
Windows
Vista
Tranformatio
n Pack -
Make you
computer
look like
Vista
How Do I
Make Gold
Fast In
Runescape/
How Do I
Make A Live
Chat Using
Php?
How To Make
Your Pc Work
Faster - get
your pc
working
unbelievably
fast in 5
minutes
!!
Make Your
Own Mmorpg -
Gaming
Engine
Does Anyone
Know How To
Make Exe
Files
Here's
Some Jokes
To Make You
Laugh A
Little. -
Jokes Jokes
Jokes...
Name 3
Things That
Make You
Real Mad
Could
Someone Make
A Php Script
For Me? -
Script to
manage clans
and players
Key Logger.
- How To
Make
advertisement



Make Your Own Phpmyadmin



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE