[PHP] mysql adapter and DAL

2011-09-17 Thread shahrzad khorrami
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

2011-09-17 Thread shahrzad khorrami
mysqli - it's what I wanted. thanks

[PHP] recursive

2010-07-17 Thread shahrzad khorrami
hi all :) here is a xml file: directive rule rules rule /rule rule /rule /rules /rule /directive directive rule rules rule /rule rule /rule /rules /rule /directive . . . . I have a xml file with a

[PHP] simplexml_load_file problem

2010-05-24 Thread shahrzad khorrami
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

2010-05-24 Thread shahrzad khorrami
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

2010-05-24 Thread shahrzad khorrami
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

2010-05-24 Thread shahrzad khorrami
ok friends, solved ;) $funName = 'getAssetHostsList'; $results = $this-_helper-results($funName); $result = $client-$funName(); Thanks shahrzad

Re: [PHP] create tree from arrays

2010-05-15 Thread shahrzad khorrami
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; } }

[PHP] create tree from arrays

2010-05-13 Thread shahrzad khorrami
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

Re: [PHP] create tree from arrays

2010-05-13 Thread shahrzad khorrami
Thanks Rechard :) I'm testing it... merccc

Re: [PHP] create tree from arrays

2010-05-13 Thread shahrzad khorrami
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

[PHP] Re: -----json and php----help

2010-05-11 Thread shahrzad khorrami
thanks Nathan, I think this is a good way

Re: [PHP] Strange MySQL Problem

2009-12-14 Thread shahrzad khorrami
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

Re: [PHP] Best ajax library

2009-12-12 Thread shahrzad khorrami
salam ;) JQuery is good one. -- Shahrzad Khorrami

Re: [PHP] alpha/beta/gamma TO $var['alpha']['beta'] = 'gamma'

2009-06-07 Thread shahrzad khorrami
:D

[PHP] Pointer for csv files

2009-05-30 Thread shahrzad khorrami
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

[PHP] Background Process

2009-05-26 Thread shahrzad khorrami
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) {

Re: [PHP] fgets function for very large files

2009-05-25 Thread shahrzad khorrami
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

[PHP] executing background process from php

2009-05-25 Thread shahrzad khorrami
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 phphttp://www.webdeveloper.com/forum/showthread.php?t=90061' where can I find it? Thanks in advance, Shahrzad

Re: [PHP] fgets function for very large files

2009-05-24 Thread shahrzad khorrami
How to divide a large csv file to small ones? Thanks, Shahrzad

Re: [PHP] fgets function for very large files

2009-05-24 Thread shahrzad khorrami
:-o I want to divide this large csv file with programming to small one!

[PHP] fgets function for very large files

2009-05-23 Thread shahrzad khorrami
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

Re: [PHP] fgets function for very large files

2009-05-23 Thread shahrzad khorrami
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

[PHP] soft Phone

2009-03-10 Thread shahrzad khorrami
you know where I can find this application source code? Thanks in advance, shahrzad khorrami

[PHP] phpMailer Problem!

2009-01-18 Thread shahrzad khorrami
remove Username password, but didn't work!... thanks, shahrzad khorrami

[PHP] phpMailer Problem!

2009-01-18 Thread shahrzad khorrami
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!

2009-01-18 Thread shahrzad khorrami
thanks chris :)

Re: [PHP] Thank you everyone, What a wonderful world

2009-01-02 Thread shahrzad khorrami
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

[PHP] Control Over Printer Queue On Windows

2008-11-01 Thread shahrzad khorrami
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

[PHP] strrev() for persian language!

2008-09-29 Thread shahrzad khorrami
hi all, for reversing of characters, strrev() is good. but for persian characters it doesn't work! Thanks

[PHP] Re: strrev() for persian language!

2008-09-29 Thread shahrzad khorrami
Thanks alot I tested what you said and IT WORKS! Thanks Maciek :-)

[PHP] Fwd: strrev() for persian language!

2008-09-29 Thread shahrzad khorrami
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

2008-09-29 Thread shahrzad khorrami
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

2008-09-29 Thread shahrzad khorrami
Thanks for reply U+103A0 ... U+103DF How can I use of it?