hello i need a small script to do this: people enter their url in a field and when they press the check button they will be taken to w3c site to see if their site code validates. http://validator.w3.org/check?uri=referer PHP: thanks
It is simple Enter site url <input type="text" id="ref"> <input type="button" value="Check" onclick="javascript: location.replace('http://validator.w3.org/check?uri='+document.getElementById('ref').value); " > Code (markup): regards