[PHP] remove page referrer
Hi all, I have 2 page ,when I go from first page to second page , I don't want the user can back to first page where it come from. is there any way to do this in php ? to remove or disactive $_SERVER["HTTP_REFERER"] in php? Thanks
Fw: [PHP] remove page referrer
my problem is for the 'Back' button of Internet Explorer,.. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Just Thanks..
IRIran.net'Remove page referrer' was my first question from PHP.net mailing lists, that's great :) , php have a good support , I think all php lovers gather here :) , I love this place , Thanks to all
Re: [PHP] Thank you everyone, What a wonderful world
I'm sorry for there are no rules in the world no real men to help them. May *Allah* help them as we see what happened in *Iraq* who started war with Iran and just he can! I believe because I can't see any power in men to do that. America is behind Israel and other countries really are too weak and timid to help. just pray for them.. thanks behzad
[PHP] phpMailer Problem!
hi all, I want to send email using SMTP Authentication with PHPMailer, I searched more and more but I can't find anything of my problem /// include_once('class.phpmailer.php'); include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Host = "mail.xx.com"; // sets GMAIL as the SMTP server $mail->Port = 80; $mail->Username = "webs...@xxx.com"; // SMTP username $mail->Password = "x"; // SMTP password $mail->From = "webs...@xx.com"; $mail->FromName = "First Last"; $mail->Subject= "PHPMailer Test Subject via smtp"; $mail->AltBody= "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test $mail->MsgHTML("h"); $mail->AddAddress("xx...@gmail.com", "John Doe"); //$mail->AddAttachment("images/phpmailer.gif"); // attachment if(!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message sent!"; } result is nothing, no error but didn't send then I remove Username & password, but didn't work!... thanks, shahrzad khorrami
[PHP] phpMailer Problem!
I tested with port 25, but it didn't work. I confuse, I don't know what problem is it works well with gmail... thanks for reply :)
Re: [PHP] phpMailer Problem!
thanks chris :)
[PHP] soft Phone
Hi all :-) I want to use of *soft phone* application in my php codes..First is it possible? has php a module for this purpose? if it hasn't... By the way I think I must use of something else such as a java application in my php codes... now how can I embed this application to my program? and do you know where I can find this application source code? Thanks in advance, shahrzad khorrami
[PHP] fgets function for very large files
hi all, I have a csv file with more than 100,000 lines. I want to insert each line as a record in a database. but for the reason of very number of lines, I put a button with caption Next, when we click on it, 1000 line will insert into db and then again click next button and insert next 1000 line and is this good way? what do you recommend? and how can I do that? Thanks in advance, shahrzad
Re: [PHP] fgets function for very large files
Thanks for repply :) It must be automatically, it means that there is a form that an operator browse a csv with large size(more than 2-3 GB) and in next step(page) first 1000 line insert into db then by clicking on next button, next 1000 line operator don't know any thing about phpmyadmin and programming just browse the csv file and everything will do automatically in my code all of lines inserted correctly with @set_time_limit(600) but it's too slow and bad way... no use of phpmyadmin and any splitter csv installer program.. Thanks, shahrzad
Re: [PHP] fgets function for very large files
one thing! I need four fields of 7 fields in each line, in my code from original csv file first four of fields choose(mappping these fields with columns of table in db) for example: a line in csv file: "a","b","c","d","e","f","g" in table of database 4 column : name,ext,tel,date that 4 field of csv file must map to these column then I can't directly import my csv file into db. some process must do to insert just my selected fields of csv file... Thanks, Shahrzad
Re: [PHP] fgets function for very large files
How to divide a large csv file to small ones? Thanks, Shahrzad
Re: [PHP] fgets function for very large files
:-o I want to divide this large csv file with programming to small one!
Re: [PHP] fgets function for very large files
in the following loop: $row = 1; while (($line = fgets($handle, 1024)) !== FALSE ) { $line = str_replace(SEPARATOR, ",", $line); $data = explode(",", $line); $row++; } How put 1000 by 1000 lines of csv file to new ones? and you know I think this works slowly what do you recommend? Thanks in advance, shahrzad >> >> > 1: http://php.net/fgetcsv > 2: if( ($row % 1) == 0 ) { > 3: http://php.net/fputcsv > > >
[PHP] executing background process from php
Hi friends, I am newbie with this subject and really need to know it... I need a good and clear samples of 'executing background process from php<http://www.webdeveloper.com/forum/showthread.php?t=90061>' where can I find it? Thanks in advance, Shahrzad
[PHP] Background Process
Hi, I have two php scripts, first one must pass arguments to second(the php script that will take more time to process for example inserting 100 records to db, data come from first script). I search around web and find below function: function execInBackground($path, $exe, $additional) { global $conf; if (file_exists($path . $exe)) { chdir($path); if (substr(php_uname(), 0, 7) == "Windows"){ echo 'going Windows'; pclose(popen("start \"bla\" \"" . $exe . "\" " . $additional, "r")); } else { exec("./" . $exe . " " . $additional . " > /dev/null &"); } } } But I don't know how to pass variables to the second file? and how to use of this function? in *windows* enviroment... and return value of second file to first.. Thanks in advance shahrzad
[PHP] Pointer for csv files
hi, Is there any function in php to get data of a csv file from a line to another line that we say? for example get me data from line 400 to line 1400 of a csv file. if no function, what you recommend to get data? Thanks in advance, Shahrzad
Re: [PHP] alpha/beta/gamma TO $var['alpha']['beta'] = 'gamma'
:D
Re: [PHP] Best ajax library
salam ;) JQuery is good one. -- Shahrzad Khorrami
Re: [PHP] Strange MySQL Problem
Salaaam $sql = "INSERT INTO BOOK(bookname, authorsname, ISBN) VALUES ('".$_POST[bookname]."'' , '".$_POST[authorsname]."',''".$_POST[ISBN]."')"; above line is correct, your code is wrong ,$_POST[ISBN]')"; and add $host = 'localhost'; $con = mysql_connect($host, $username, $password); you can also check this page: http://php.net/manual/en/function.mysql-connect.php Regards, Shahrzad
[PHP] -----json and php----help
hi dears, I have a json file. I want to access some fileds of this json file only and can add some fields to it also... I couldn't find any thing in www, json api ! is there any function to get specific data from json file or add function that can add something in somewhere in this json file or create new json file from this file with my format? Thanks alot, Shahrzad Khorrami
[PHP] Re: -----json and php----help
thanks Nathan, I think this is a good way
[PHP] create tree from arrays
hi all, I want to create an array from another array to create json file in my format and pass it to a js libraryok. I just know that I have to use recursive function... but how? it's hard for me to create the new array.. main array: Array ( [0] => Array ( [nid] => 1 [parentID] => 0 [text] => Dashboard [cls] => x-btn-icon [icon] => lib/extjs/resources/images/default/icon/Dashboard.png [singleClickExpand] => 1 [leaf] => 0 [id] => Dashboard ) [1] => Array ( [nid] => 2 [parentID] => 1 [text] => Dashboard [cls] => firstExpanded [icon] => lib/extjs/resources/images/default/tree/s.gif [singleClickExpand] => 1 [leaf] => 0 [id] => ) [2] => Array ( [nid] => 3 [parentID] => 2 [text] => Dashboard [cls] => x-btn-icon [icon] => lib/extjs/resources/images/default/tree/s.gif [singleClickExpand] => 1 [leaf] => 1 [id] => dashboard ) ... -- The array I want to create: [0] => Array ( [nid] => 1 [parentID] => 0 [text] => Dashboard [cls] => x-btn-icon [icon] => lib/extjs/resources/images/default/icon/Dashboard.png [singleClickExpand] => 1 [leaf] => 0 [id] => Dashboard [children] => Array( [0] => Array ( [nid] => 2 [parentID] => 1 [text] => Dashboard [cls] => firstExpanded [icon] => lib/extjs/resources/images/default/tree/s.gif [singleClickExpand] => 1 [leaf] => 0 [id] => [children] => Array( [0] => Array ( [nid] => 3 [parentID] => 2 [text] => Dashboard [cls] => x-btn-icon [icon] => lib/extjs/resources/images/default/tree/s.gif [singleClickExpand] => 1 [leaf] => 1 [id] => dashboard ) ) ) ) ) . wow! it means that by nid and parentID, I'll notice where I must add children item to array... Thanks, Shahrzad
Re: [PHP] create tree from arrays
Thanks Rechard :) I'm testing it... merccc
Re: [PHP] create tree from arrays
Dear Richard, we have more than one parentID with value 0 in main array, your code is so good but show me just the children of first parentID 0. :) Thanks, Shahrzad
Re: [PHP] create tree from arrays
Thanks to all, it works now: function mktree_array(&$arr, $id = 0) { $result = array(); foreach ($arr as $a) { if ($id == $a['parentID']) { $a['children'] = $this->mktree_array($arr, $a['nid']); $result[] = $a; } } return $result; } merci Shahrzad ;)
[PHP] simplexml_load_file problem
hi all, $results is a xml format string, I want to get this string as a real xml file $nodes = simplexml_load_file($results); but $nodes is empty array... how can I do that? nodes must be an object contains xml Thanks, Shahrzad Khorrami
Re: [PHP] simplexml_load_file problem
by using of ' simplexml_load_string' instead of file, I solved my problem :) thanks
[PHP] Zend_Soap_Client --HOw to pass what function to call from wsdl
hi all, Is it possible to define (pass a argument 'function name') that we can change the function to call from soap? for example here we can pass getList and then = $client->geList() must call... it means pass what function to call from wsdl... $this->_helper->results('this func must call from wsdl') class Zend_Controller_Action_Helper_Results extends Zend_Controller_Action_Helper_Abstract { $client = new Zend_Soap_Client('http://192.168.200.18/neuron.wsdl', $options); $result = $client->*getUsers*(); Regards, Shahrzad Khorrami
[PHP] Re: Zend_Soap_Client --HOw to pass what function to call from wsdl
ok friends, solved ;) $funName = 'getAssetHostsList'; $results = $this->_helper->results($funName); $result = $client->$funName(); Thanks shahrzad
[PHP] recursive
hi all :) here is a xml file: . . . . I have a xml file with a name for example(test.xml).. and 3 tables of database, (group,directives,rules) group is for recording the name of the opened xml file, directives is for storing the attributes of directive tag and rules is for 'rule' tag's attributes. I know I must use of recursive function.. but how? first read name of the xml file and store it in group table, then the content of the file and fill the directive and rules table... how to implement it in php? Thanks, Shahrzad
[PHP] mysql adapter and DAL
hi all, I'm looking for a mysql adapter for create my dal.. where can I find a good one? and have you ever written a dal with a mysql adapter? in my dal I want to pass parameters to sql sting, for example like following: $db->query($sql, array($name, $family)) thanks, Shahrzad Khorrami
Re: Re: [PHP] mysql adapter and DAL
mysqli - it's what I wanted. thanks
[PHP] strrev() for persian language!
hi all, for reversing of characters, strrev() is good. but for persian characters it doesn't work! Thanks
[PHP] Re: strrev() for persian language!
Thanks alot I tested what you said and IT WORKS! Thanks Maciek :-)
[PHP] Fwd: strrev() for persian language!
hi all, is there any function to return us the lanuage of a word in the sentence? for example : My name is شهرزاد . when it sees شهرزاد notice that is a persian language. Thanks
[PHP] return language of a word
hi all, is there any function to return us the lanuage of a word in the sentence? for example : My name is شهرزاد . when it sees شهرزاد notice that is a persian language. Thanks
[PHP] Re: return language of a word
Thanks for reply U+103A0 ... U+103DF How can I use of it?
[PHP] Control Over Printer Queue On Windows
Hi all, I am writing a script to print a few thousand pdf documents and I need to have some control over the number of jobs that are sent to the printer queue at time ... I can not see how to get print queue information eg the number of jobs pending .. at least my attempts are failing.. any ideas? Thanks in advance