ايران ويج

نسخه‌ی کامل: کلاس‌های مفید php
شما در حال مشاهده‌ی نسخه‌ی متنی این صفحه می‌باشید. مشاهده‌ی نسخه‌ی کامل با قالب بندی مناسب.
صفحه‌ها: 1 2
PDO DB Class, Execute common MySQL


مثال:

کد php:
<?php
include("db.pdo.php");

/*Note **Table name and filed name mentioned here as per instalation Sql Script 
You can change it your own way  */
$table="crm_typelead";

echo 
" Here is  For PDO MYSQL <br>";
////////////////////////////////////////////////// seelecting first instance
echo "selecting before insertion and Updation<br>";
 
$sql "SELECT * FROM ".$table."";//query
 
$row =$db->select($sql);//selecting 
 
echo '<table width="40%" border="1"><tr><td>Id</td><td>Name</td></tr>';
for(
$i=0;$i<count($row);$i++){
    echo 
"<tr>" ;
    echo 
"<td>".$row[$i]['typelead_id']."</td>";
    echo 
"<td>".$row[$i]['typelead_name']."</td>";

    echo 
"</tr>";
}

echo 
"</table>";
//




///////////////////////
echo "Here Insertion Operation <br>";
$val$db->sqlsafe('good boy zamin Mohamed P T');//fliter data
$ar = array ('typelead_name' =>$val);// array
$res $db->insert($table,$ar);//insertion code
if($res!=0){echo 'Inserted <br>Last Inserted Id :'.$res;}else{echo "not inserted<br>";}

///////////////////////////////////////////////////////////
echo "here need to upadate first row as some name <br>";
$val2$db->sqlsafe('Zamin My baby');// filtering data
$ar2 = array ('typelead_name' =>$val2);//aarry here
$where='typelead_id = 1';///condtion 
 
$res $db->update($table$ar2 $where);
if(
$res==1){echo 'Updated <br>';}else{echo "not Updated<br>";}
/////////////////////////////////////////////////////////
////////////////////////////////delete one row
//echo 'Here we delete one row (33)<br>';
//$where='typelead_id = 33';///condtion 
//$res= $db->delete($table,$where);

//echo $res;
//if($res==TRUE){echo 'Deleted <br>';}else{echo "not Deleted<br>";}

echo "selecting After insertion and Updation<br>";
 
$sql "SELECT * FROM ".$table."";//query
 
$row =$db->select($sql);//selecting 
 
echo '<table width="40%" border="1"><tr><td>Id</td><td>Name</td></tr>';
for(
$i=0;$i<count($row);$i++){
    echo 
"<tr>" ;
    echo 
"<td>".$row[$i]['typelead_id']."</td>";
    echo 
"<td>".$row[$i]['typelead_name']."</td>";

    echo 
"</tr>";
}

echo 
"</table>";

$db->close();///connection release here
//



?>
تبدیل عدد به نوشته‌ی معادلش

فقط این به زیان فرانسوی تبدیل میکنه
هرکی وفت کرد تبدیلش کنه به فارسی؛

منبع
کد php:
<?php
include 'N2TEXT.php';
$number 196453789;
$t = new ConvertNumberToText();
echo 
$t->Convert($number);
?>
تعیین اعداد اول:

کد php:
http://www.phpclasses.org/package/8214-PHP-Check-if-a-number-is-prime-in-several-ways.html 


کتابخانه‌ای برای کار با mysql ؛ (CRUD)

کد php:
http://www.phpclasses.org/package/8222-PHP-Generate-classes-to-manipulate-MySQL-table-records.html 
ذخیره کامل صفحت html شامل عکس‌ها , CSS و javascirpt توسط php

مثال:

کد php:
<?php

if (isset($_POST['submit'])) {
    
$url $_POST['url'];
    
    if (! 
trim($url)) {
        
header('LOCATION: index.php?e=' urlencode('No URL Specified'));
        exit;
    }
    
    
$contentonly = isset($_POST['content']) ? true false;
    
$keepjs = isset($_POST['javascirpt']) ? true false;
    
$compress = isset($_POST['compress']) ? true false;

    
# include the class
    
require_once 'includes/htmlSaveComplete.php';
    
$htmlSaveComplete = new htmlSaveComplete($url);
    
$html $htmlSaveComplete->getCompletePage($keepjs$contentonly$compress);
    
    if (! 
$html) {
        
header('LOCATION: index.php?e=' urlencode('Error saving the page, please try again later.'));
        exit;    
    }
    
    
file_put_contents('output.html'$html);
    
header('LOCATION: index.php?s=1');
    exit;    
}
else {
    
header('LOCATION: index.php');


دانلود:
http://www.phpclasses.org/package/8305-P...nd-JS.html
پیاده سازی الگوریتم Rijndael 256 ؛

(به رمز در آوردن و از رمز خارج کردن متن با استفاده از کلید)

مثال:

کد php:
<?php
include_once 'simpleencrypt.php';

if(isset(
$_POST['toEncrypt'])){
    
    
$toencrypt filter_input(INPUT_POST'toEncrypt'FILTER_SANITIZE_SPECIAL_CHARS);
    
    
$super_secret_key 'fhdjd65ahd92hdjd73658';//This should be something only you know about and no one else
    
    //Start encrypt class
    
$enc = new SimpleEncrypt($super_secret_key);
    
    
/**
     * Do encrypt
     * value to be stored in DB or maybe in $_SESSION
     */
    
$encrypted $enc->Encrypt($toencrypt);
    
    
/**
     * Do decrypt
     */
    
$decrypted $enc->Decrypt($encrypted);
}

?>
<html>
    <head>
        <title>Encrypt example</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width">
    </head>
    <body>
        <div>
            <label>Encrypted: <strong><?php echo $encrypted?></strong></label><br>
            <label>Decrypted: <strong><?php echo $decrypted?></strong></label><br>
            <form action="" method="POST">
                <input type="text" name="toEncrypt">
                <input type="submit">
            </form>
        </div>
    </body>
</html> 


دانلود:
http://www.phpclasses.org/package/8375-P...l-256.html
صفحه‌ها: 1 2