Een probleem is ontstaan help! s.v.p
Parse error: parse error, unexpected T_VARIABLE in C:\XAMPP\xampp\htdocs\CMS\news\config.php on line 11
dit is me config.php
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
$dbhost="localhost";
$dbusername="user";
$dbpassword="pass";
$dbname="news_system";
$connect=mysql_connect( $localhost $root $*******);
mysql_selecT_db($dbname,$dbconnect) or die ("could not select database");
ik snap het ff niet meer ik heb alles al geprobeerd zit er soms een fout in mijn Table?
------ Table:
CREATE TABLE `news` (
`newsid` int(11) NOT NULL auto_increment,
`dtime` datetime default NULL,
`title` varchar(255) default NULL,
`text1` text,
`text2` text,
PRIMARY KEY (`newsid`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
dit is de tutorial http://www.tutorialized.com/tutorial/Add-View-Edit-Delete-from-to-MySQL-database-Live-Example-News-System/6268
$dbhost="localhost";
$dbusername="user";
$dbpassword="pass";
$dbname="news_system";
$connect=mysql_connect( $localhost $root $*******);
mysql_selecT_db($dbname,$dbconnect) or die ("could not select database");
ik snap het ff niet meer ik heb alles al geprobeerd zit er soms een fout in mijn Table?
------ Table:
CREATE TABLE `news` (
`newsid` int(11) NOT NULL auto_increment,
`dtime` datetime default NULL,
`title` varchar(255) default NULL,
`text1` text,
`text2` text,
PRIMARY KEY (`newsid`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
dit is de tutorial http://www.tutorialized.com/tutorial/Add-View-Edit-Delete-from-to-MySQL-database-Live-Example-News-System/6268
$connect=mysql_connect( $localhost $root $*******);
die hoort er zo uit te zien:
mysql_connect ($db_host, $db_user, $db_pass);
dus de argumenten scheiden met komma's
Parse error: parse error, unexpected ')', expecting T_VARIABLE or '$' in C:\XAMPP\xampp\htdocs\CMS\news\config.php on line 11
ik heb dit ingevoerd
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
$dbhost="localhost";
$dbusername="user";
$dbpassword="pass";
$dbname="news_system";
mysql_connect ($db_host, $news_system, $);
mysql_select_db($dbname,$connect) or die ("Could not select database");
er klopt iets niet..?
$dbhost="localhost";
$dbusername="user";
$dbpassword="pass";
$dbname="news_system";
mysql_connect ($db_host, $news_system, $);
mysql_select_db($dbname,$connect) or die ("Could not select database");
er klopt iets niet..?
Je was de dbpassword vergeten toe te voegen aan je dollar teken.
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\XAMPP\xampp\htdocs\CMS\news\config.php on line 11
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in C:\XAMPP\xampp\htdocs\CMS\news\config.php on line 13
Could not select database
nu krijg ik dit:/ en ik heb het zo ingevoerd
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
$dbhost="localhost";
$dbusername="user";
$dbpassword="pass";
$dbname="news_system";
mysql_connect ($db_host, $news_system, $db_password);
mysql_select_db($news_system,$connect) or die ("Could not select database");
zucht wat doe ik toch steeds fout :'(
$dbhost="localhost";
$dbusername="user";
$dbpassword="pass";
$dbname="news_system";
mysql_connect ($db_host, $news_system, $db_password);
mysql_select_db($news_system,$connect) or die ("Could not select database");
zucht wat doe ik toch steeds fout :'(
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
$dbhost="localhost";
$dbusername="user";
$dbpassword="pass";
$dbname="news_system";
$connect = mysql_connect ($dbhost, $dbusername, $dbpassword);
mysql_select_db($dbname,$connect) or die ("Could not select database");
?>
$dbhost="localhost";
$dbusername="user";
$dbpassword="pass";
$dbname="news_system";
$connect = mysql_connect ($dbhost, $dbusername, $dbpassword);
mysql_select_db($dbname,$connect) or die ("Could not select database");
?>
Kijk eens naar je underscores. Verder zat je nog op 2 plaatsen in de war met je variabele namen. En de $connect tover je ook ineens ergens vandaan.
Bovenstaand stuk zal waarschijnlijk al beter werken.
Gewijzigd op 01/01/1970 01:00:00 door Roy Bongers
Ik denk dat ik iets niet helemaal goed door heb
wat vul ik in bij
dbusername="user"; <-- me root account zeg maar?
$dbpassword="pass"; <-- pass van root?
$dbname="news_system"; is duidelijk
en dan $dbhost $dbusername $dbpass daar komt wat?
en bij line 13 $dbname,$connect) dit ?
bedankt
Verder klopt de varaiabele $news_system niet, die bestaat niet eens, dat moet dus $dbname zijn....
of de naam en het wachtwoord van de database die ik gebruik voor hews systeem en waar vul ik dan me database naam en de pass in.. ? :|
user --> root
pass --> eigen ingestelde pas (of 1234)
database --> daar moet je de naam van op geven
:/
<head><title>suck it</title></head>
<body bgcolor="white">
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
include("config.php");
$result = mysql_query("SELECT * FROM news ORDER BY newsid DESC",$connect);
while($myrow = mysql_fetch_assoc($result))
{//begin of loop
echo "<b>Title:";
echo $myrow['title'];
echo "</b><br>On: <i>";
echo $myrow['dtime'];
echo "</i><hr align=left width=160>";
echo $myrow['text1'];
echo "<br><a href=\"read_more.php?newsid=$myrow[newsid]\">Read More...</a>
|| <a href=\"edit_news.php?newsid=$myrow[newsid]\">Edit</a>
|| <a href=\"delete_news.php?newsid=$myrow[newsid]\">Delete</a><br><hr>";
}//end of loop
?>
include("config.php");
$result = mysql_query("SELECT * FROM news ORDER BY newsid DESC",$connect);
while($myrow = mysql_fetch_assoc($result))
{//begin of loop
echo "<b>Title:";
echo $myrow['title'];
echo "</b><br>On: <i>";
echo $myrow['dtime'];
echo "</i><hr align=left width=160>";
echo $myrow['text1'];
echo "<br><a href=\"read_more.php?newsid=$myrow[newsid]\">Read More...</a>
|| <a href=\"edit_news.php?newsid=$myrow[newsid]\">Edit</a>
|| <a href=\"delete_news.php?newsid=$myrow[newsid]\">Delete</a><br><hr>";
}//end of loop
?>
</body>
</html>
Gare ding is me xampp naar de takke of heb ik hier iets verkeerds in ?
Code (php)
1
2
3
2
3
<?php
$result = mysql_query("SELECT * FROM news ORDER BY newsid DESC",$connect) or trigger_error (mysql_error ());
?>
$result = mysql_query("SELECT * FROM news ORDER BY newsid DESC",$connect) or trigger_error (mysql_error ());
?>