Jump to content

Php Ile Paylaşanın Bilgisini Nasıl Çekebilirim?


 Share

Recommended Posts

İyi Günler Ben Paylaşım Sitesi Yapmak İstiyorum Facebook Tarzı Php Yeni Başladım.

Mesela Birisi Birşey Paylaştı.Onun Ad Soyad Çekmek İstiyorum Ama Nasıl Yapılcak Bilmiyorum.

Örneğin ; Ben ahmet mehmet diye hesabımdan birşey paylaşıyorum. mustafa murat hesabımla girince paylaşanın ben olduğunu gösteriyor.

Aşağıdaki Resim

http://k1309.hizliresim.com/1f/f/snpqj.png

1 ' de ahmet123 ile giriş yapıyorum

2 ' de merhaba ben ahmet mehmet diye paylaşım yapıyorum

3 ' de paylaştığımı gösteriyorum.

4 ' de mustafa murat adlı hesabıma giriyorum.

5 ' de ahmet mehmet adlı hesabımın paylaşılanın mustafa murat paylaştı gibi oluyor

Yani Ben Hangi Hesap Paylaştıysa O Hesabın İsminin Gösterilmesini İstiyorum Nasıl Yapabilirim

Kodlarım ;


[spoiler]
[php]
<?php
foreach($updatesarray as $data)
{
$msg_id=$data['msg_id'];
$orimessage=$data['message'];
$message=tolink(htmlentities($data['message']));
$time=$data['created'];
$username=$data['username'];
$uid=$data['uid_fk'];
$face=$Wall->Gravatar($uid);
$commentsarray=$Wall->Comments($msg_id);

$id = $_SESSION["bilgi"]["uye_id"];
$sorgu = mysql_query("select * from uyeler where uye_id = '$id'");
$yaz = mysql_fetch_array($sorgu);

?>

yasak kelime type="text/javascript">
$(document).ready(function(){$("#stexpand<?php echo $msg_id;?>").oembed("<?php echo $orimessage; ?>",{maxWidth: 400, maxHeight: 300});});
</script>

<div class="stbody" id="stbody<?php echo $msg_id;?>">

<div class="stimg">

</div>
<div class="sttext">
<a class="stdelete" href="#" id="<?php echo $msg_id;?>" title="Sil">x</a>
<b><?php echo $yaz ["ad_soyad"]; ?></b> <?php echo $message;?>
<div class="sttime"><?php time_stamp($time);?> | <a target=_blank href='#' class='commentopen' id='<?php echo $msg_id;?>' title=''></a></div>

<div id="stexpandbox">
<div id="stexpand<?php echo $msg_id;?>"></div>
</div>

<div class="commentcontainer" id="commentload<?php echo $msg_id;?>">


<?php include('load_comments.php') ?>





</div>
<div class="commentupdate" style='display:none;background-color:#FAF3DA' id='commentbox<?php echo $msg_id;?>'>
<div class="stcommentimg">

</div>





$id = $_SESSION["bilgi"]["uye_id"];

yerine

$id = $data['uye_id'];

[/php]
[/spoiler]

Yaptım Ama Olmadı O zamanda

http://p1309.hizliresim.com/1f/f/snwjn.png

Böyle Oluyor

Nasıl Yapabilirim Acaba?
Link to comment
Share on other sites

baglan.php
 
[spoiler]

<?php
 
define('DB_SERVER', 'localhost');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', '');
define('DB_DATABASE', 'eneox');
$connection = mysql_connect("localhost","root","") or die(mysql_error());
$database = mysql_select_db("eneox") or die(mysql_error());
mysql_query("SET NAMES 'latin5'"); 
 
?>
 
 
------------------------------------------------------------------------------------------------------------------
 
 
 
 
functions.php
 
 
 
<?php
 
 
class Wall_Updates {
 
 
    
     // Updates  
 public function Updates($uid) 
{
   $query = mysql_query("SELECT M.msg_id, M.uid_fk, M.message, M.created, U.username FROM messages M, users U  WHERE M.uid_fk=U.uid and M.uid_fk='$uid' order by M.msg_id desc ") or die(mysql_error());
         while($row=mysql_fetch_array($query))
$data[]=$row;
   return $data;
 
    }
//Comments
  public function Comments($msg_id) 
{
   $query = mysql_query("SELECT C.com_id, C.uid_fk, C.comment, C.created, U.username FROM comments C, users U WHERE C.uid_fk=U.uid and C.msg_id_fk='$msg_id' order by C.com_id asc ") or die(mysql_error());
  while($row=mysql_fetch_array($query))
   $data[]=$row;
        if(!empty($data))
{
       return $data;
         }
}
 
//Avatar Image
public function Gravatar($uid) 
{
   $query = mysql_query("SELECT email FROM `users` WHERE uid='$uid'") or die(mysql_error());
  $row=mysql_fetch_array($query);
  if(!empty($row))
  {
   $email=$row['email'];
        $lowercase = strtolower($email);
        $imagecode = md5( $lowercase );
$data="[url=http://www.gravatar.com/avatar.php?gravatar_id=]http://www.gravatar.com/avatar.php?gravatar_id=[/url]$imagecode";
return $data;
         }
else
{
$data="default.jpg";
return $data;
}
}
 
//Insert Update
public function Insert_Update($uid, $update) 
{
$update=htmlentities($update);
  $time=time();
  $ip=$_SERVER['REMOTE_ADDR'];
        $query = mysql_query("SELECT msg_id,message FROM `messages` WHERE uid_fk='$uid' order by msg_id desc limit 1") or die(mysql_error());
        $result = mysql_fetch_array($query);
 
        if ($update!=$result['message']) {
            $query = mysql_query("INSERT INTO `messages` (message, uid_fk, ip,created) VALUES ('$update', '$uid', '$ip','$time')") or die(mysql_error());
            $newquery = mysql_query("SELECT M.msg_id, M.uid_fk, M.message, M.created, U.username FROM messages M, users U where M.uid_fk=U.uid and M.uid_fk='$uid' order by M.msg_id desc limit 1 ");
            $result = mysql_fetch_array($newquery);
return $result;
        } 
else
{
return false;
}
 
       
    }
 
//Delete update
public function Delete_Update($uid, $msg_id) 
{
   $query = mysql_query("DELETE FROM `comments` WHERE msg_id_fk = '$msg_id' ") or die(mysql_error());
        $query = mysql_query("DELETE FROM `messages` WHERE msg_id = '$msg_id' and uid_fk='$uid'") or die(mysql_error());
        return true;
            
    }
 
//Insert Comments
public function Insert_Comment($uid,$msg_id,$comment) 
{
$comment=htmlentities($comment);
     $time=time();
  $ip=$_SERVER['REMOTE_ADDR'];
        $query = mysql_query("SELECT com_id,comment FROM `comments` WHERE uid_fk='$uid' and msg_id_fk='$msg_id' order by com_id desc limit 1 ") or die(mysql_error());
        $result = mysql_fetch_array($query);
    
if ($comment!=$result['comment']) {
            $query = mysql_query("INSERT INTO `comments` (comment, uid_fk,msg_id_fk,ip,created) VALUES ('$comment', '$uid','$msg_id', '$ip','$time')") or die(mysql_error());
            $newquery = mysql_query("SELECT C.com_id, C.uid_fk, C.comment, C.msg_id_fk, C.created, U.username FROM comments C, users U where C.uid_fk=U.uid and C.uid_fk='$uid' and C.msg_id_fk='$msg_id' order by C.com_id desc limit 1 ");
            $result = mysql_fetch_array($newquery);
         
  return $result;
        } 
else
{
return false;
}
       
    }
 
//Delete Comments
public function Delete_Comment($uid, $com_id) 
{
   $query = mysql_query("DELETE FROM `comments` WHERE uid_fk='$uid' and com_id='$com_id'") or die(mysql_error());
        return true;
            
    }
 
    
 
}
 
?>
 
[/spoiler]

 
---------------------------------------------------------------------------------------------------------------------
 
 
load_messages.php
 
[spoiler]
 <?php //Srinivas Tamada [url=http://9lessons.info]http://9lessons.info[/url]
//Loading Comments link with load_updates.php 
foreach($updatesarray as $data)
 {
 $msg_id=$data['msg_id'];
 $orimessage=$data['message'];
 $message=tolink(htmlentities($data['message']));
  $time=$data['created'];
   $username=$data['username'];
 $uid=$data['uid_fk'];
 $face=$Wall->Gravatar($uid);
 $commentsarray=$Wall->Comments($msg_id);
 
 $id = $_SESSION["bilgi"]["uye_id"];
 $sorgu = mysql_query("select * from uyeler where uye_id = '$id'");
 $yaz = mysql_fetch_array($sorgu);
 
?>
 
<script type="text/javascript"> 
$(document).ready(function(){$("#stexpand<?php echo $msg_id;?>").oembed("<?php echo  $orimessage; ?>",{maxWidth: 400, maxHeight: 300});});
</script>
<link rel="stylesheet" type="text/css" href="style1.css">
<div class="stbody" id="stbody<?php echo $msg_id;?>">
 
<div class="stimg">
<img src="uyeler/<?php  echo $yaz["resim"]; ?>" class='big_face'/>
</div> 
<div class="sttext">
<a class="stdelete" href="#" id="<?php echo $msg_id;?>" title="Sil">x</a>
<a href="#" style="color:#336666;line-height:2; "><?php echo $yaz["ad_soyad"]; ?></a>
<br>
<?php echo $message;?>
<div class="sttime"><?php time_stamp($time);?> | <a href='#' class='commentopen' id='<?php echo $msg_id;?>' title='Yanıtla'>Yanıtla </a></div> 
 
<div id="stexpandbox">
<div id="stexpand<?php echo $msg_id;?>"></div>
</div>
 
<div class="commentcontainer" id="commentload<?php echo $msg_id;?>">
 
 
<?php include('load_comments.php') ?>
 
 
 
 
 
</div>
<div class="commentupdate" style='display:none;background-color:#FAF3DA' id='commentbox<?php echo $msg_id;?>'>
<div class="stcommentimg">
<img src="uyeler/<?php  echo $yaz["resim"]; ?>" class='small_face'/>
</div> 
<div class="stcommenttext" >
<form method="post" action="">
 
<input type="text" name="Yanıtla" class="comment" maxlength="200" placeholder="Yanıtlamak İçin Enter Tuşuna Basınız." id="ctextarea<?php echo $msg_id;?>" style="border-radius: 0px;outline:none;border:1px solid #e1e1e1;overflow:hidden;outline:none;">
<br />
<input type="submit"  value=" Yanıtla "  id="<?php echo $msg_id;?>" class="btn-mini btn-danger comment_button"/>
</form>
 
 
</div>
</div>
 
 
</div> 
 
</div>
 
 
<?php
 
  }
?>
 
[/spoiler]
 
---------------------------------------------------------------------------------------------------------------------
 
message_ajax.php

 
[spoiler]
 
 
<?php 
header("Content-Type: text/html; charset=windows-1254"); 
 
function tr($tr){ 
$hallet=iconv("UTF-8", "ISO-8859-9",$tr); 
return $hallet; 
}
 
 
?>
 
 <?php
error_reporting(0);
include_once 'baglan.php';
include_once 'includes/db.php';
include_once 'includes/functions.php';
include_once 'includes/tolink.php';
include_once 'includes/time_stamp.php';
include_once 'session.php';
include_once 'baglan.php';
 
$Wall = new Wall_Updates();
if(isSet($_POST['update']))
{
$update=$_POST['update'];
$data=$Wall->Insert_Update($uid,$update);
 
if($data)
{
 $msg_id=$data['msg_id'];
 $orimessage=$data['message'];
 $message=tolink(htmlentities($data['message']));
  $time=$data['created'];
   $username=$data['username'];
 $uid=$data['uid_fk'];
 $face=$Wall->Gravatar($uid);
 $commentsarray=$Wall->Comments($msg_id);
 
 $id = $_SESSION["bilgi"]["uye_id"];
 $sorgu = mysql_query("select * from uyeler where uye_id = '$id'");
 $yaz = mysql_fetch_array($sorgu);
 
//$commentsarray=$Wall->Comments($msg_id);
?>
<link rel="stylesheet" type="text/css" href="style1.css">
<div class="stbody" id="stbody<?php echo $msg_id;?>">
 
<div class="stimg">
<img src="uyeler/<?php  echo $yaz["resim"]; ?>" class='big_face'/>
</div> 
<div class="sttext">
<a class="stdelete" href="#" id="<?php echo $msg_id;?>" title="Sil">x</a>
<a href="#" style="color:#3300FF;line-height:2; "><?php echo $yaz["ad_soyad"]; ?></a>
<br>
<?php echo $message;?>
<div class="sttime"><?php time_stamp($time);?> | <a href='#' class='commentopen' id='<?php echo $msg_id;?>' title='Yanıtla'>Yanıtla </a></div> 
 
<div id="stexpandbox">
<div id="stexpand<?php echo $msg_id;?>"></div>
</div>
 
<div class="commentcontainer" id="commentload<?php echo $msg_id;?>">
 
 
 
<?php include('load_comments.php') ?>
 
 
 
 
 
</div>
<div class="commentupdate" style='display:none;background-color:#FAF3DA' id='commentbox<?php echo $msg_id;?>'>
<div class="stcommentimg">
<img src="uyeler/<?php  echo $yaz["resim"]; ?>" class='small_face'/>
</div> 
<div class="stcommenttext" >
<form method="post" action="">
 
<textarea name="Yanıtla" class="comment" maxlength="200" placeholder="Yanıtlamak İçin Enter Tuşuna Basınız." id="ctextarea<?php echo $msg_id;?>" style="border-radius: 0px;border:1px solid #e1e1e1;outline:none;overflow:hidden; "></textarea>
<br />
<input type="submit"  value=" Yanıtla "  id="<?php echo $msg_id;?>" class="btn-mini btn-danger comment_button"/>
</form>
 
 
</div>
</div>
 
 
</div> 
 
</div>
 
 
<?php
}
}
?>
[/spoiler]
 
---------------------------------------------------------------------------------------------------------------------
 
session.php
 
[spoiler]
 
 
 <?php
$uid=1; // User Session ID
?>
 
[/spoiler]
 
 
---------------------------------------------------------------------------------------------------------------------
load_comments.php
 
[spoiler]
 
<?php
 
foreach($commentsarray as $cdata)
 {
 $com_id=$cdata['com_id'];
 $comment=tolink(htmlentities($cdata['comment'] ));
  $time=$cdata['created'];
   $username=$cdata['username'];
  $uid=$cdata['uid_fk'];
   $cface=$Wall->Gravatar($uid);
   
    $id = $_SESSION["bilgi"]["uye_id"];
 $sorgu = mysql_query("select * from uyeler where uye_id = '$id'");
 $yaz = mysql_fetch_array($sorgu);
 ?>
<div class="stcommentbody" id="stcommentbody<?php echo $com_id; ?>">
<div class="stcommentimg">
<img src="uyeler/<?php  echo $yaz["resim"]; ?>" class='small_face'/>
</div> 
<div class="stcommenttext">
<a class="stcommentdelete" href="#" id='<?php echo $com_id; ?>' title='Delete Comment'>x</a>
<b><?php echo $yaz ["ad_soyad"]; ?></b> <?php echo $comment;?>
<div class="stcommenttime"><?php time_stamp($time); ?></div> 
</div>
</div>
<?php 
}
?>
 
 
[/spoiler]
---------------------------------------------------------------------------------------------------------------------


comment_ajax.php
 
 [spoiler]
 
<?php 
header("Content-Type: text/html; charset=windows-1254"); 
 
function tr($tr){ 
$hallet=iconv("UTF-8", "ISO-8859-9",$tr); 
return $hallet; 
}
 
?>
 <?php
 //Srinivas Tamada http://9lessons.info
//Load latest comment 
error_reporting(0);
include_once 'baglan.php';
include_once 'includes/db.php';
include_once 'includes/functions.php';
include_once 'includes/tolink.php';
include_once 'includes/time_stamp.php';
include_once 'session.php';
 
$Wall = new Wall_Updates();
if(isSet($_POST['comment']))
{
$comment=$_POST['comment'];
$msg_id=$_POST['msg_id'];
$ip=$_SERVER['REMOTE_ADDR'];
$cdata=$Wall->Insert_Comment($uid,$msg_id,$comment,$ip);
 
if($cdata)
{
$com_id=$cdata['com_id'];
 $comment=tolink(htmlentities($cdata['comment'] ));
 $time=$cdata['created'];
 $username=$cdata['username'];
 $uid=$cdata['uid_fk'];
 $cface=$Wall->Gravatar($uid);
 
   $id = $_SESSION["bilgi"]["uye_id"];
 $sorgu = mysql_query("select * from uyeler where uye_id = '$id'");
 $yaz = mysql_fetch_array($sorgu);
 ?>
<div class="stcommentbody" id="stcommentbody<?php echo $com_id; ?>">
<div class="stcommentimg">
<img src="uyeler/<?php  echo $yaz["resim"]; ?>" class='small_face'/>
</div> 
<div class="stcommenttext">
<a class="stcommentdelete" href="#" id='<?php echo $com_id; ?>'>X</a>
<b><?php echo $yaz ["ad_soyad"]; ?></b> <?php echo $comment;?>
<div class="stcommenttime"><?php time_stamp($time); ?></div> 
</div>
</div>
<?php
}
}
?>
 
[/spoiler]
 
 
Veri Tabanı Resim : hsw9ky.png
Link to comment
Share on other sites

veriler burdan çekiliyor ama işte kafamı karıştırdı.mesajlar yanıtlar falan ama ad soyad çekmeyi beceremedim.

 

 

 

functions.php

 

 

[spoiler]

<?php
 
 
class Wall_Updates {
 
 
    
     // Updates  
 public function Updates($uid) 
{
   $query = mysql_query("SELECT M.msg_id, M.uid_fk, M.message, M.created, U.username FROM messages M, users U  WHERE M.uid_fk=U.uid and M.uid_fk='$uid' order by M.msg_id desc ") or die(mysql_error());
 
         while($row=mysql_fetch_array($query))
$data[]=$row;
   return $data;
 
    }
//Comments
  public function Comments($msg_id) 
{
   $query = mysql_query("SELECT C.com_id, C.uid_fk, C.comment, C.created, U.username FROM comments C, users U WHERE C.uid_fk=U.uid and C.msg_id_fk='$msg_id' order by C.com_id asc ") or die(mysql_error());
 
  while($row=mysql_fetch_array($query))
   $data[]=$row;
        if(!empty($data))
{
       return $data;
         }
}
 
//Avatar Image
public function Gravatar($uid) 
{
   $query = mysql_query("SELECT email FROM `uyeler` WHERE uye_id='$uid'") or die(mysql_error());
  $row=mysql_fetch_array($query);
  if(!empty($row))
  {
   $email=$row['email'];
        $lowercase = strtolower($email);
        $imagecode = md5( $lowercase );
return $data;
         }
else
{
$data="default.jpg";
return $data;
}
}
 
//Insert Update
public function Insert_Update($uid, $update) 
{
$update=htmlentities($update);
  $time=time();
  $ip=$_SERVER['REMOTE_ADDR'];
        $query = mysql_query("SELECT msg_id,message FROM `messages` WHERE uid_fk='$uid' order by msg_id desc limit 1") or die(mysql_error());
        $result = mysql_fetch_array($query);
 
        if ($update!=$result['message']) {
            $query = mysql_query("INSERT INTO `messages` (message, uid_fk, ip,created) VALUES ('$update', '$uid', '$ip','$time')") or die(mysql_error());
          $newquery = mysql_query("SELECT M.msg_id, M.uid_fk, M.message, M.created, U.username FROM messages M, users U where M.uid_fk=U.uid and M.uid_fk='$uid' order by M.msg_id desc limit 1 ");
          $result = mysql_fetch_array($newquery);
return $result;
// burdaki mantık INNER J
        } 
else
{
return false;
}
 
       
    }
 
//Delete update
public function Delete_Update($uid, $msg_id) 
{
   $query = mysql_query("DELETE FROM `comments` WHERE msg_id_fk = '$msg_id' ") or die(mysql_error());
        $query = mysql_query("DELETE FROM `messages` WHERE msg_id = '$msg_id' and uid_fk='$uid'") or die(mysql_error());
        return true;
            
    }
 
//Insert Comments
public function Insert_Comment($uid,$msg_id,$comment) 
{
$comment=htmlentities($comment);
     $time=time();
  $ip=$_SERVER['REMOTE_ADDR'];
        $query = mysql_query("SELECT com_id,comment FROM `comments` WHERE uid_fk='$uid' and msg_id_fk='$msg_id' order by com_id desc limit 1 ") or die(mysql_error());
        $result = mysql_fetch_array($query);
    
if ($comment!=$result['comment']) {
            $query = mysql_query("INSERT INTO `comments` (comment, uid_fk,msg_id_fk,ip,created) VALUES ('$comment', '$uid','$msg_id', '$ip','$time')") or die(mysql_error());
            $newquery = mysql_query("SELECT C.com_id, C.uid_fk, C.comment, C.msg_id_fk, C.created, U.username FROM comments C, users U where C.uid_fk=U.uid and C.uid_fk='$uid' and C.msg_id_fk='$msg_id' order by C.com_id desc limit 1 ");
 
            $result = mysql_fetch_array($newquery);
         
  return $result;
        } 
else
{
return false;
}
       
    }
 
//Delete Comments
public function Delete_Comment($uid, $com_id) 
{
   $query = mysql_query("DELETE FROM `comments` WHERE uid_fk='$uid' and com_id='$com_id'") or die(mysql_error());
        return true;
            
    }
 
    
 
}
 
?>
 

 

[/spoiler]
Link to comment
Share on other sites

dün beraber baktık team viewer la, sistem kullanıcıları users tablosunda tutulacak şekilde ayarlanmış, ama arkadaş sonradan onu uyeler tablosu ekleyerek oraya aktarmış. ben yapamadım, bakacak arkadaş ona göre bakarsa iyi olur.

Link to comment
Share on other sites

dün beraber baktık team viewer la, sistem kullanıcıları users tablosunda tutulacak şekilde ayarlanmış, ama arkadaş sonradan onu uyeler tablosu ekleyerek oraya aktarmış. ben yapamadım, bakacak arkadaş ona göre bakarsa iyi olur.

aynen tam yaparken hatta yangın çıktı demiştim de yangına bakmaya gitmiştim o yangın degilmiş alışveriş merkezinin servisi yanmış 

Link to comment
Share on other sites

 

 

Katılıyorum. Bütün kodları kendi yazarsa sorun olduğunda daha kolay tespit edebilir.

 

İsterseniz bana TeamViewer bilgilerinizi verin, bir de ben bakayım.

size nasıl ulaşabilirim.buradan team viewer bilgilerini yollayınca online olup olmadığınızı bilemiyorum acaba ne zaman bağlanabilirsiniz bilgisayarıma

Link to comment
Share on other sites

loadmessages.php sayfasında
 

$sorgu = mysql_query("select * from uyeler where uye_id = '$id'");

 
yerine
 

$sorgu = mysql_query("select * from uyeler where uye_id = '$uid'");

 
kullanın. $id açık olan oturumun kullanıcı idini verdiği için hep kendinizi görüyorsunuz.

 

Bu değişikliği yapınca hiçbir ad gözükmüyor çünkü mesaj gönderilirken uid_fk hep 1 olarak kaydediliyor. Bu sorunu çözemedim. uid_fk değerini mesajı görebilecek grupları mı yoksa mesajı atan kişiyi göstermek için mi kullanıyorsunuz?

 

İçinden çıkılmayacak galiba bunun. İsterseniz size yapmak istediklerinizi sıfırdan yazabilirim. Ya da hazır scriptleri kullanabilirsiniz. "social media script" diye arama yapmanız yeterli.

 

Ayrıca gönderdiğiniz dosyalarda Brontok virüsü var. Kısaca bilgi vermem gerekirse bu virüs klasörleri gizliyor ve yerine virüs dosyası koyuyor. Siz klasörü açtığınızı zannediyorsunuz ama virüs açılıyor ve gizlenmiş olan klasörü yeni pencerede açıyor. Bilgisayarınızda antivirüs taraması yapmanızı tavsiye ederim.

çok teşekkür ederim ilgilendiğiniz için tnctr.com sitesinden başka  kimse ilgilenmedi benimle çok çok teşekkür ederim yardımlarınız için.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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.

 Share

  • Similar Content

    • By artae
      Blumentals Rapid PHP 2022 v17.2.0.242 Multilingual | 116.7 Mb

      Rapid PHP editor is a faster and more powerful PHP code editor for Windows combining features of a fully-packed PHP IDE with the speed of the Notepad.

      Rapid PHP is the most complete all-in-one software for coding PHP, HTML, CSS, javascript and other web development languages with tools for debugging, validating, reusing, navigating and formatting your code.
      The fastest PHP editor / IDE
      Loads much faster than any other PHP editor or PHP IDE with similar features
      Powerful syntax highlighting
      Supports HTML, CSS, javascript, PHP, Smarty, XML, SQL, Apache and more
      Code intelligence
      Tons of intelligent code completion, navigation and suggestion features for PHP, HTML, CSS, javascript, Smarty
      Powerful editor
      Unicode support, bracket-matching, code folding, auto-complete, auto-replace, multi-highlight and more
      HTML5 and CSS3 ready
      Coding features are up-to-date with modern standards
      Powerful CSS features
      Inspector, compatibility watch, prefixizer, code assistants, browser preview and much more
      Advanced search and replace
      Goto anything, quick search, detailed search, file search, regular expressions, detailed results and more
      Smarty & framework support
      Powerful support for Smarty PHP template ee and popular PHP frameworks
      Debugger & validators
      xDebug PHP debugger, real PHP checker, spelling checker, W3 HTML and CSS validator, JSLint javascript checker
      Direct FTP/SFTP/FTPS
      Edit directly on your web server or publish local development copy updates with a single click
      Efficient code re-use
      Code snippet library and code templates with assignable shortcuts
      Loads of tools
      Code beautifier, dynamic ToDo, color picker, XRay etc.
      Windows 7, 8, 10, 11
      -
      DOWNLOAD
      (Buy premium account for maximum speed and resuming ability)


      https://nitroflare.com/view/E09DDFFDA3F427E/5qyio.Blumentals.Rapid.PHP.2022.v17.2.0.242.Multilingual.rar



      https://rapidgator.net/file/256f2a2509d9805b93e30092b928665b/5qyio.Blumentals.Rapid.PHP.2022.v17.2.0.242.Multilingual.rar


    • By artae
      Blumentals Rapid PHP 2022 v17.0.0.240. Multilingual | 112.3 Mb
      Rapid PHP editor is a faster and more powerful PHP code editor for Windows combining features of a fully-packed PHP IDE with the speed of the Notepad. Rapid PHP is the most complete all-in-one software for coding PHP, HTML, CSS, javascript and other web development languages with tools for debugging, validating, reusing, navigating and formatting your code.

      The fastest PHP editor / IDE
      Loads much faster than any other PHP editor or PHP IDE with similar features
      Powerful syntax highlighting
      Supports HTML, CSS, javascript, PHP, Smarty, XML, SQL, Apache and more
      Code intelligence
      Tons of intelligent code completion, navigation and suggestion features for PHP, HTML, CSS, javascript, Smarty
      Powerful editor
      Unicode support, bracket-matching, code folding, auto-complete, auto-replace, multi-highlight and more
      HTML5 and CSS3 ready
      Coding features are up-to-date with modern standards
      Powerful CSS features
      Inspector, compatibility watch, prefixizer, code assistants, browser preview and much more
      Advanced search and replace
      Goto anything, quick search, detailed search, file search, regular expressions, detailed results and more
      Smarty & framework support
      Powerful support for Smarty PHP template engine and popular PHP frameworks
      Debugger & validators
      xDebug PHP debugger, realtime PHP checker, spelling checker, W3 HTML and CSS validator, JSLint javascript checker
      Direct FTP/SFTP/FTPS
      Edit directly on your web server or publish local development copy updates with a single click
      Efficient code re-use
      Code snippet library and code templates with assignable shortcuts
      Loads of tools
      Code beautifier, dynamic ToDo, color picker, XRay etc.
      Operating System:Windows 7, 8, 10
      Home Page -https://www.rapidphpeditor.com/
      DOWNLOAD
      (Buy premium account for maximum speed and resuming ability)


      https://nitroflare.com/view/B8818BDF4105D08/kz6qv.Blumentals.Rapid.PHP.2022.v17.0.0.240.Multilingual.rar



      https://rapidgator.net/file/3d9484b81940155cfd8646bc0f8a1a08/kz6qv.Blumentals.Rapid.PHP.2022.v17.0.0.240.Multilingual.rar


    • By prototype
      Merhaba arkadaşlar index.php sayfasında Session oluşturup, sayfa2.php'de listelettiriyorum. Ama ben session'ı oluşturduktan sonra otomatik olarak sayfa2.php'ye yönlendirme yapmasını istiyorum, nasıl yapabileceğim konusunda bana yardımcı olabilirseniz çok sevinirim. Teşekkürler.

      index.php
      <?php session_start(); ?> <!doctype html> <html> <head> <title>Session Oluştur</title> </head> <body> <form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>"> Ürün Adı :<input type="text" name="urunadi"> Alış Fiyati :<input type="text" name="alisfiyati"> Müşteri Adı :<input type="text" name="musteriadi"> <input type="submit" name="submit" value="Submit"> </form> <br> <a href="sayfa2.php">2.Sayfaya Git </a><br> <a href="sayfa3.php">3.Sayfaya Git </a> <?php if ($_SERVER["REQUEST_METHOD"] == "POST") { $_SESSION['uadi']=$_POST['urunadi']; $_SESSION['afiyati']=$_POST['alisfiyati']; $_SESSION['madi']=$_POST['musteriadi']; } ?> </body> </html>
      sayfa2.php
       
      <?php session_start(); ?> <!doctype html> <html> <head> <title>Session Listeleme</title> </head> <body> <?php if(isset($_SESSION["uadi"])&&isset($_SESSION["afiyati"])&&isset($_SESSION["madi"])) { ?> Ürün Adı : <?php echo $_SESSION['uadi']; ?><br> Alış Fiyatı : <?php echo $_SESSION['afiyati']; ?><br> Müşteri Adı : <?php echo $_SESSION['madi']; }?><br> <a href="index.php">1.Sayfaya Git </a> </body> </html>  
    • By Abdullah 37
      Merhaba arkadaşlar.
      Veritabanından timestamp (CURRENT_TIMESTAMP) yapılı bir kolondan gelen tarih verisini tarih ve saat şeklinde yazdırmak amacıyla explode ile parçaladım. Ama her yerde kullanabilmem için bir fonksiyon yazdım.
      Ancak fonksiyonu çalıştırma kısmını tam halledemedim eksikler var ama ne olduğunu bulamadım. Tarih ve Saat verisini ayrı ayrı nasıl yazdırabilirim?
      Nasıl bir ekleme yapmalıyız? Yardımcı olur musunuz?
      <?php function TarihSaat($par){ $zaman = $par; $zamanBol = explode(" ",$zaman); $tarih = $zamanBol[0]; $saat2 = $zamanBol[1]; $saat= substr($saat2, 0,5); echo $tarih; echo $saat; } //kayit_tarih sütunundaki tarih: 2017-08-26 01:30:37 $k_tarih = $kayit_tarih["tarih"]; TarihSaat($k_tarih); ?>  
    • By Abdullah 37
      Merhaba arkadaşlar.
      Php ile mysql işlemleri yaparken güvenlik kısmında tam olarak ne yapılması gerektiğini bilmiyorum. Bu konuda yardımlarınıza ihtiyacım var.
      - Üye kayıt ve giriş kısmını kodlarken gelen verileri hangi güvenlik fonksiyonlarından geçirmeliyim?
      - Konu ekleme ve düzenleme, yorum ekleme ve düzenleme kısımlarını hangi güvenlik fonksiyonlarından geçirmeliyim?
  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...