Jump to content
×
×
  • Create New...

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

  • Bu Alana Reklam Verebilirsiniz
    Bu Alana Reklam Verebilirsiniz

Girilen Yazıyı Tersten Yazdırma Programı Örneği Ve Kodları | PHP

Rate this topic


serverIR

Recommended Posts

Girilen Yazıyı Tersten Yazdırma Programı Örneği Ve Kodları | PHP
  • Members

Bu örneğimizde kullanıcının klavyeden girmiş olduğu bir ifadeyi tersten yazdıran Php kodunu yazacağız. Birinci dosyamızda kullanıcının klavyeden bir ifade girmesini sağlayacak form sayfası oluşturacağız. İkinci Php sayfasında ise girilen ifadeyi ters çeviren strrev php fonksiyonu ile ters çevirme işlemini yapacağız ve ekranda yazdıracağız. Bu işlemleri yapan sayfaların kodları aşağıdaki gibidir. Sayfanın altında ise kendinizin deneyebilmesi için bir link bulunmaktadır.

tersyazdirma1.php sayfasının kodları:

 

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PHP Metni Ters Yazdırma-1</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
 
<body>
 
<form action="tersyazdirma2.php" method="post">
<table border="0" bgcolor="#FFCC66">
  <tr>
    <td colspan="2" align="center">PHP Girilen İfadeyi Tersten Yazdırma</td>
    </tr>
  <tr bgcolor="#6600FF">
    <td>Metni Giriniz:</td>
    <td><input name="metin" type="text" /></td>
  </tr>
  
  <tr>
    <td>&nbsp;</td>
    <td><input name="gonder" type="submit" value="Tersten Yazdır" /></td>
  </tr>
</table>
 
</form>
<br />
 
</body>
</html>

 

tersyazdirma2.php sayfasının kodları:

 

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PHP Metni Ters Yazdırma-2</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
 
<body>
<?php
$metin=$_POST['metin'];
 
 
?>
<font size="+3">
<table border="1" bgcolor="#FFFF66">
  <tr bgcolor="#00CCCC">
    <td colspan="2" align="center">PHP Metni Tersten Yazdırma</td>
  </tr>
  <tr bgcolor="#99FF66">
    <td>Girilen Metin:</td>
    <td><?php echo $metin; ?></td>
  </tr>
  <tr bgcolor="#CC9966">
    <td>Tersten Yazdırma:</td>
    <td><?php echo strrev($metin); ?></td>
  </tr>
</table>
</font>
<A HREF="javascript:javascript:history.go(-1)">Geri dön</A>
<br />
 
</body>
</html>

 

----------------------------------------------------------------------------

Link to comment
https://weblep.com/topic/198-girilen-yaz%C4%B1y%C4%B1-tersten-yazd%C4%B1rma-program%C4%B1-%C3%B6rne%C4%9Fi-ve-kodlar%C4%B1-php/
Share on other sites


Konu Altı Reklam 1
Konu Altı Reklam 2
  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...