Jump to content

little problem- writing a slash / in a string


harafa

Recommended Posts

Hi all,

i have a little problem, i know u can solve it :D

i need to change the path of an uploaded file, by concatenating its name & type with a constant string, this constant string is a location on my computer

$path="C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\upload\". " " .$_FILES["file"]["name"]. " " .$tp =$_FILES["file"]["type"];

This code is not working, i need 2 know wt's wrong, wt should i do instead??

Thanx in advance :)

$path="C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\upload\". " " .$_FILES["file"]["name"]. " " .$tp =$_FILES["file"]["type"];

Maybe you can see what it's doing that with some highlighting ;)

$path="C:\\Program Files\\Apache Software Foundation\\Apache2.2\\htdocs\\upload\\".$_FILES["file"]["name"].$tp.$_FILES["file"]["type"];

 

You needed to escape the quotes

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.