Can I place a php script inside an .asp page?
I’m new to web programming, and my friend wants me to place a php online voting poll into an .asp page. I know php & mysql pretty well, but not asp. Is it possible to place php into and .asp page? Is it the same and as easy as placing php inside of an html document?
September 5, 2010 | Filed Under Scripts FAQs
Comments
One Response to “Can I place a php script inside an .asp page?”
Powered by Yahoo! Answers
Yes,Why not here is usefull hits
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Cropper</title>
<script type="text/php">
//Some code
</script>
</head>
<body class="yui-skin-sam">
</body>
</html>