View Single Post
ישן 11-08-10, 18:22   # 4
SniR-S
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Aug 2008
הודעות: 546

SniR-S לא מחובר  

קוד:
<?php 
if(isset($_POST['submit'])) { 
    // Get the form value 
    $url = $_POST['url']; 
    // Get the last code 
    $code = end(explode("=", $url)); 
    echo "<h1>". $code . "</h1><br />"; 
} 
?> 
<html dir="rtl"> 
    <head> 
        <title></title> 
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1255"> 
    </head> 
    <body> 
        <form action="" method="post"> 
            הכנס את הURL:<br /> 
            <input type="text" name="url" /><br /> 
            <input type="image" src="http://www.noproblem.co.il/Resources/Global/Image/Landing/ProfessionCard/btn.send.jpg" name="submit" /> 
        </form> 
    </body> 
</html>
  Reply With Quote