how to link html folder's file with php folder's file -
i have 2 folders html , php, in html html files exist , in php php file exist. in html folder-> buycars.html exist link viewh.php(this in php folder) how create link… use
<a href="php/viewh.php"> that not working.
you need jump 1 directory back
<a href="../php/viewh.php">
Comments
Post a Comment