i have this input
<input type="text" class="form-control" value="כפר חב"ד" name="city" >
my problem is when the value is insert in to the db i get this כפר חב the last letter and the " sing is gone how can I make it work?
i have this input
<input type="text" class="form-control" value="כפר חב"ד" name="city" >
my problem is when the value is insert in to the db i get this כפר חב the last letter and the " sing is gone how can I make it work?
Change the double quotes on the outside to single quotes:
<input type="text" class="form-control" value='כפר חב"ד' name="city" >