Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

php prob


mrdj204's Avatar
Member
0 0

im getting this error

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/djthegod/public_html/cms/viewArticle.php on line 10```

with this code

```markup<?php
// Require the database class
include "includes/DbConnector.php";

// Execute the query to retrieve the selected article
$result = mysql_query('SELECT title,thearticle FROM cmsarticles WHERE ID = '.$_GET['id']);

// Get an array containing the resulting record
$row = mysql_fetch_array($result);
echo "Your selected article: $row['title']<br><br>$row['thearticle']";

?>```

id appreciate any help

mrdj204's Avatar
Member
0 0

THANK YOU SOOOOOO MUCH!