Forum: PHP Mar 22nd, 2008 |
| Replies: 5 Views: 1,051 yes.. try:
$search = $_GET['word']; |
Forum: PHP Mar 22nd, 2008 |
| Replies: 8 Views: 2,385 <?
$arrX = array('Ben','Sam','Will');
foreach ($arrX as $value) {
echo "<input type=\"radio\" name=\"RadioGroup1\" value=".$value." />".$value."<br />";
}
?>
CMIIW :) |
Forum: PHP Dec 13th, 2007 |
| Replies: 11 Views: 1,522 [QUOTE=emarkus;486870]No i still have the same problem.
mysql_select_db($database, $db);
should be:
mysql_select_db($dbdatabase,$db); |
Forum: Geeks' Lounge Dec 10th, 2007 |
| Replies: 21 Views: 2,061 use it as a key holder.. so u don't forget your keys anymore.. |
Forum: Geeks' Lounge Dec 10th, 2007 |
| Replies: 16 Views: 1,710 i won.. after 3rd attemp anyway.. |
Forum: Geeks' Lounge Dec 10th, 2007 |
| Replies: 12 Views: 1,673 i've explained my dormmate that i'm a programmer.. but he insist me to fix his printer.. |
Forum: PHP Dec 10th, 2007 |
| Replies: 4 Views: 10,515 Did ur Excel installed with arabic text compatibility? |
Forum: PHP Dec 2nd, 2007 |
| Replies: 1 Views: 625 Yes, we certainly will help u all we can.. as long as you ask for specific questions.. :D |
Forum: PHP Dec 2nd, 2007 |
| Replies: 1 Views: 527 http://www.daniweb.com/forums/thread99266.html |
Forum: PHP Nov 24th, 2007 |
| Replies: 11 Views: 1,522 Yes, php's mysql_query "automaticaly adds semicolon" after the query string. |
Forum: PHP Nov 22nd, 2007 |
| Replies: 8 Views: 1,015 <html>
<head></head>
<body>
<?php
$nam1= $_POST['name1'];
$pwd1= $_POST['pwd1'];
if ($nam1=="admin" && $pwd1=="jesus")
{
print "<script language=\"JavaScript\">";
print "window.location =... |
Forum: PHP Nov 22nd, 2007 |
| Replies: 8 Views: 1,015 oooh, yea..
thx 4 reminding.. |
Forum: PHP Nov 22nd, 2007 |
| Replies: 8 Views: 1,015 php page
<html>
<head></head>
<body>
<?php
$nam1= $_POST['name1'];
$pwd1= $_POST['pwd1'];
if ($nam1=="admin" && $pwd1=="jesus")
{ |
Forum: PHP Nov 22nd, 2007 |
| Replies: 19 Views: 74,784 just found it..
//connect to database
$link=mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die("<b>Unable to specified database</b>");
//query database
$query =... |
Forum: PHP Nov 22nd, 2007 |
| Replies: 19 Views: 74,784 keep getin' this message:
1. no radio button selected.
what's wrong? |