edbr 22 Junior Poster

$_SERVER['DOCUMENT_URI']. will echo the directory you are in so it will always cause a problem. is this not ok or is it interfering with your .htaccess somehow?

<ul> <li><a href="<?php echo 'index.php'; ?>">Organisation</a></li> <li><a href="<?php echo 'about/organisation.php'; ?>">Organisation</a></li> <li><a href="<?php echo 'about/team.php'; ?>">Team</a></li> </ul>

edbr 22 Junior Poster

http://localhost/phpmyadmin perhaps phpmyadmin should be at /usr/share/phpmyadmin

edbr 22 Junior Poster

<img src="image.jpg" title=" my title" width="640" height="401" />
title element

edbr 22 Junior Poster

in your database (phpadmin for example) use default current_timestamp and in attribute on update current_timestamp

edbr 22 Junior Poster

specify student_code, s.student_code

edbr 22 Junior Poster

try s.student_code then

edbr 22 Junior Poster

from mysql

SELECT t1.name, t2.salary
  FROM employee AS t1 INNER JOIN info AS t2 ON t1.name = t2.name;

SELECT t1.name, t2.salary
  FROM employee t1 INNER JOIN info t2 ON t1.name = t2.name;

so maybe is the AS m part

edbr 22 Junior Poster

`

 <?php
    $a = "Unemployed";
    if ($a == "Employed, Locally"  || $a == "Employed, Abroad"){
    echo "hi";
    }
    elseif ($a == "Unemployed"){
    echo "hello";
    }
    ?>`
edbr 22 Junior Poster

only the php elements will be hidden so you will have to look at the code for the page i would think

edbr 22 Junior Poster
<?php echo date('Y') ;?>
edbr 22 Junior Poster
edbr 22 Junior Poster

cant you put the bank names into an array then check
if in_array?

edbr 22 Junior Poster
edbr 22 Junior Poster

or simply

<?php
echo mt_rand();
?>
edbr 22 Junior Poster
SimonIoa commented: Thanks edbr +2
edbr 22 Junior Poster

to do what?

edbr 22 Junior Poster
edbr 22 Junior Poster
if(condition)
{
//do stuff
}
edbr 22 Junior Poster

i just teseted yor code and both mails were sent. Problem is elsewhere then i would say

edbr 22 Junior Poster

well although you are still using mysql
you could do something like

$query = "SELECT COUNT(id) FROM members"; 

$result = mysql_query($query) or die(mysql_error());

while($row = mysql_fetch_array($result)){
    echo "There are ". $row['COUNT(id)'] ." members.";
    echo "<br />";
}
edbr 22 Junior Poster

http://www.monique-design.com/ opens . oops sorry missed an s

edbr 22 Junior Poster

could this be a dtetime format issue? I would echo all the values to see how they compare

edbr 22 Junior Poster

what respose do you get?