Simple question; how do I get this to work in php because of the quotes?
echo "<table class='tablestyleorchideeaanbod' onClick='document.location = 'links.html''>";
Simple question; how do I get this to work in php because of the quotes?
echo "<table class='tablestyleorchideeaanbod' onClick='document.location = 'links.html''>";
By escaping the single quotes.
echo "<table class='tablestyleorchideeaanbod' onClick='document.location = \'links.html\''>";