Forum: PHP Dec 15th, 2008 |
| Replies: 7 Views: 772 you are using code generated by dreamweaver, i suggest to create our own log in form since code generated by dreamweaver is not flexible.
try to experiment the code posted by sikka_varun |
Forum: PHP Aug 31st, 2007 |
| Replies: 4 Views: 4,407 definitely base on your title you cant use mysql to move your file in the directory. but in php its posible, like ryan was posted..
and the use of mysql there is to save other information in the... |
Forum: PHP Aug 30th, 2007 |
| Replies: 5 Views: 770 are you using php? try to use a counter in fetching the data then echo the counter, bcoz if your using the ID(autoincrement) of mysql everytime you delete you also delete(part of deletion) that... |
Forum: PHP Aug 30th, 2007 |
| Replies: 5 Views: 3,264 try this code:
<?php
mysql_connect("localhost","root","")
or die("Failure to communicate");
mysql_select_db("mydb")
or die("Could not connect to Database");
if(isset ($_POST['submit']))
{... |
Forum: PHP Aug 29th, 2007 |
| Replies: 4 Views: 3,267 you can use move_uploaded_file |
Forum: PHP Aug 28th, 2007 |
| Replies: 4 Views: 1,529 the reason why the query did not execute bcoz it does not read the statement in your query
try this query $query = mysql_query("SELECT * FROM topics WHERE '" .$_POST['metode']. "' LIKE... |
Forum: PHP Aug 24th, 2007 |
| Replies: 2 Views: 1,223 Files\wamp\www\working3\admincp\pages\mainconfig.php on line 11
it usually happen when you have an error in your if statement
if ()
{ }
elseif()
{ }
else
{ } |
Forum: PHP Aug 15th, 2007 |
| Replies: 8 Views: 814 try this one;
$result = mysql_query("SELECT * FROM topics WHERE Title LIKE '%".$search."%'"); |
Forum: PHP Aug 15th, 2007 |
| Replies: 2 Views: 2,206 <?
mysql_connect("localhost", "root", "");
mysql_select_db("dbname");
$query = "SELECT Picture FROM tblPics";
$result = mysql_query($query);
echo '<table>';
while... |
Forum: PHP Aug 15th, 2007 |
| Replies: 2 Views: 2,206 <?
mysql_connect("localhost","root", "");
mysql_select_db("dbname");
$query = "SELECT Pics from tblPic";
$result = mysql_query($query);
echo '<table>';
while ($r=mysql_fetch_array($result))... |