NuSphere Forums Forum Index
NuSphere Forums
Reply to topic
HTML & PHP CONVERTER


Joined: 27 Sep 2011
Posts: 10
Reply with quote
HTML & PHP CONVERTER

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Document sans titre</title>
</head>
<body>
</body>
</html>

convert html to php with single quote

echo '<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Document sans titre</title>
</head>
<body>
</body>
</html>';

convert php to html with single quoted

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Document sans titre</title>
</head>
<body>
</body>
</html>

convert html to php with double quoted

echo"<!DOCTYPE HTML>
<html>
<head>
<meta charset=\"utf-8\">
<title>Document sans titre</title>
</head>
<body>
</body>
</html>
";

convert php to html with double quoted

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Document sans titre</title>
</head>
<body>
</body>
</html>

convert php double quoted to php single quote

echo"<!DOCTYPE HTML>
<html>
<head>
<meta charset=\"utf-8\">
<title>Document sans titre</title>
</head>
<body>
</body>
</html>
";

to

echo '<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Document sans titre</title>
</head>
<body>
</body>
</html>';

thank you !!!!
View user's profileFind all posts by gladiiiSend private message
HTML & PHP CONVERTER
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours  
Page 1 of 1  

  
  
 Reply to topic