Please read the following PHP code:
<?php
$word1="you";
$word2="love";
$join=$word1."\".$word2;
echo $join; /-> will display : you\love
include("openDB.php");
$query="insert into mytable (words) values ('$join')";
$result=mysql_query($query);
?>
The Problem is when i insert into database it won't works. the record only contain "youlove" not "you\love"
is there any idea how to store in record in format "you\love"??
Thanks A lot