Re: [PHP] looking for a PDF generator class/library for PHP 5?

2013-05-18 Thread Ali Reza Sajedi
tcpdf is a good choice ali - Original Message - From: dealTek deal...@gmail.com To: PHP General list php-general@lists.php.net Sent: Saturday, May 18, 2013 3:05 AM Subject: [PHP] looking for a PDF generator class/library for PHP 5? Hi all, I'm looking into a good versatile PDF

Re: [PHP] Generating CRUD code for normalized db

2013-03-08 Thread Ali Reza Sajedi
Try Symfony 2 Does anyone know of any framework that can generate CRUD code for normalized database tables? Preferably FOSS. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How can I debug wsf/php in eclipse?

2012-02-07 Thread Ali Asghar Toraby Parizy
Can anybody help me in this regard? On Mon, Feb 6, 2012 at 10:15 PM, Ali Asghar Toraby Parizy aliasghar.tor...@gmail.com wrote: Hi. I'm developing a wsf/php web service. I'm using doc/lit messaging format and every thing is OK. But I don't know how i can debug my web services using eclipse

Re: [PHP] Re: How can I debug wsf/php in eclipse?

2012-02-07 Thread Ali Asghar Toraby Parizy
:( Thanks for your help. Is it the only way? On Tue, Feb 7, 2012 at 12:44 PM, Sharl.Jimh.Tsin amoiz.sh...@gmail.comwrote: 在 2012-02-07二的 12:11 +0330,Ali Asghar Toraby Parizy写道: Can anybody help me in this regard? On Mon, Feb 6, 2012 at 10:15 PM, Ali Asghar Toraby Parizy aliasghar.tor

[PHP] How can I debug wsf/php in eclipse?

2012-02-06 Thread Ali Asghar Toraby Parizy
Hi. I'm developing a wsf/php web service. I'm using doc/lit messaging format and every thing is OK. But I don't know how i can debug my web services using eclipse. Although I can directly run my web service in debug mode, Unfortunately when I debug my client it never jump into web service code and

Re: [PHP] Converting a Unicode code to related charachter

2011-12-19 Thread Ali Asghar Toraby Parizy
for example this as $string: 'ביםףתס' I will get this as $rtn at return: 'aeioun' Regards, On 18/12/11 10:33, Ali Asghar Toraby Parizy wrote: Hi. As I was writing a php code last week, I struggled with a function that was supposed to convert Unicode code to a character. At last I wrote

[PHP] Converting a Unicode code to related charachter

2011-12-18 Thread Ali Asghar Toraby Parizy
Hi. As I was writing a php code last week, I struggled with a function that was supposed to convert Unicode code to a character. At last I wrote this function: function unicodeToChr($param) { $a =json_decode('{t:'.$param.'}'); return $a-t; } In this function the $param should

[PHP] Does exist any zend debugger for windows 64bit?

2011-09-02 Thread Ali Asghar Toraby Parizy
Hi I was using windows32 bit for a while, But last week I decided to install 64bit version. I've installed wamp64bit with xdebugger, already. but I want to use zend debugger. But when I want to download zend debugger from http://downloads.zend.com/pdt/server-debugger/ I cant find any 64bit

[PHP] implementing dot-net DES encryption by php

2011-06-16 Thread Ali Asghar Toraby Parizy
Hi I have a big problem.I've tried for 2 days but I haven't been able to solve the problem yet. I need to implement dot-net DES encryption in php site. I tired several solutions and the following code is the best that I've seen. But it doesn't work perfect either.

[PHP] Why Is the Zend debugger this too slow?

2011-05-31 Thread Ali Asghar Toraby Parizy
there is a problem with some initializations! I use widows7 and wamp. eclipse helios. php version 5.2.4 and zend plugin 4.2.x -- Ali Asghar Torabi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] smart auto download file

2011-05-31 Thread Ali Asghar Toraby Parizy
I want to build a web page for file auto download like cnet.download. A page that tells user Your download will begin in a moment... and after a few seconds download starts. How can I do that by php thanks for any help. -- Ali Asghar Torabi -- PHP General Mailing List (http://www.php.net

Re: [PHP] smart auto download file

2011-05-31 Thread Ali Asghar Toraby Parizy
: application/octet-stream'); header('Content-Disposition: attachment; filename=azipfile.zip'); readfile($filePath); ? On 31 May 2011 18:02, Ali Asghar Toraby Parizy aliasghar.tor...@gmail.com wrote: I want to build a web page for file auto download like cnet.download. A page that tells user

[PHP] login to protected directory by php

2010-08-15 Thread Ali Asghar Toraby Parizy
, 2010 at 1:52 AM, Ali Asghar Toraby Parizy aliasghar.tor...@gmail.com wrote: Hi The php script is in another folder. I set PHP_AUTH_USER and 'PHP_AUTH_PW in login script then try to open the file in the protected directory. the php file is not in the protected realm. On Sat, Aug 14, 2010 at 3

[PHP] login to protected directory by php

2010-08-13 Thread Ali Asghar Toraby Parizy
directory, user authentication dialog appears. How can I do this? What is my error? -- Ali Asghar Torabi

[PHP] protecting a directory by php mysql

2010-08-11 Thread Ali Asghar Toraby Parizy
know that I can protect web pages by a simple PHP script(checking log in session) but I don't know how I can protect images and files! Thanks for any help -- Ali Asghar Torabi

Re: [PHP] Inconsistent json_decode() results

2010-05-05 Thread Ali Asghar Toraby Parizy
Calling json_decode() from 5.2.6 returns an associative array when asked, while 5.2.10 always returns a stdClass.  Is this a bug or a problem with my calling convention? Thanks! François -- Ali Asghar Torabi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] How to Force IE to download text file?

2010-05-01 Thread Ali Asghar Toraby Parizy
attachment is correct syntax and solves the problem. Thanks On Fri, Apr 30, 2010 at 9:44 PM, Andre Polykanine an...@oire.org wrote: Hello Ali, It's attachment, not attachement. Maybe here's the reason? Just a thought. -- With best regards from Ukraine, Andre Skype: Francophile; WlmMSN

[PHP] How to Force IE to download text file?

2010-04-30 Thread Ali Asghar Toraby Parizy
; filename=data.txt); Header(Content-type: text/plain); echo $some_data; ? -- Ali Asghar Torabi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Two color rows in table inside while iteration

2010-04-28 Thread Ali Asghar Toraby Parizy
It isn't good idea to use php to visualize your table. You can fetch you data by php and style them by java script. On Wed, Apr 28, 2010 at 3:59 PM, Juan Rodriguez Monti j...@rodriguezmonti.com.ar wrote: Hello Guys, I would like to implement a two color row table for some queries that I'm

Re: [PHP] Two color rows in table inside while iteration

2010-04-28 Thread Ali Asghar Toraby Parizy
28, 2010 at 4:12 PM, Ashley Sheridan a...@ashleysheridan.co.ukwrote: On Wed, 2010-04-28 at 16:16 +0430, Ali Asghar Toraby Parizy wrote: It isn't good idea to use php to visualize your table. You can fetch you data by php and style them by java script. On Wed, Apr 28, 2010 at 3:59 PM, Juan

[PHP] open source bookshop

2010-03-17 Thread Ali Reza Sajedi
Hello all, Does anybody know a good open source bookshop/bookstore system written in php+mysql? Google and sourceforge search didn't yield good results. Any hint would be very much appreciated. Ali -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] open source bookshop

2010-03-17 Thread Ali Reza Sajedi
not meet. Ali - Original Message - From: O. Lavell olav...@xs4all.nl To: php-general@lists.php.net Sent: Wednesday, March 17, 2010 8:22 PM Subject: Re: [PHP] open source bookshop Tommy Pham wrote: Ali Reza Sajedi wrote: Hello all, Does anybody know a good open source bookshop

[PHP] File Upload

2010-01-30 Thread Ali Reza Sajedi
folder. Introduced in PHP 4.3.10 and PHP 5.0.3. Has anyone encountered such a problem or has a clue as to what the cause could be? Thank you. Kind regards Ali -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] File Upload

2010-01-30 Thread Ali Reza Sajedi
Thank you for your replys. In php.ini upload_tmp_dir is not set, so that the system should use its default tmp folder. It used to work properly. But, after a system update from centos5.3 to centos5.4 this malfunction is now observed. Any idea? Kind regards Ali - Original Message

[PHP] Zend debugger doesn't work

2010-01-18 Thread Ali Asghar Toraby Parizy
Hi I have installed php 5.3.1 (with thread safety = on) recently And I tried to install zend debugger yesterday. I downloaded zend debugger extension from http://downloads.zend.com/pdt/server-debugger/ But I didn't find dll module for 5.3.x release. So I tried dll file in 5_2_x_comp folder. When I

Re: [PHP] Best ajax library

2009-12-20 Thread Ali Asghar Toraby Parizy
On Sat, Dec 19, 2009 at 7:13 PM, tedd tedd.sperl...@gmail.com wrote: I have chosen jquery at last. because: * jQuery has a huge number of plugins available for everything you could imagine wanting to do online * The information on the jQuery site is extremely well documented, with many

Re: [PHP] Best ajax library

2009-12-19 Thread Ali Asghar Toraby Parizy
...@gmail.comwrote: On Dec 15, 2009, at 3:12 AM, Joseph Masoud wrote: On 15 Dec 2009, at 08:50, Ali Asghar Toraby Parizy aliasghar.tor...@gmail.com wrote: Which one is more active than others? I mean which project extends faster and better, in future? On Tue, Dec 15, 2009 at 1:37 AM, Philip

Re: [PHP] Best ajax library

2009-12-15 Thread Ali Asghar Toraby Parizy
Which one is more active than others? I mean which project extends faster and better, in future? On Tue, Dec 15, 2009 at 1:37 AM, Philip Thompson philthath...@gmail.com wrote: On Dec 14, 2009, at 4:27 AM, Ali Asghar Toraby Parizy wrote: Hi I think the best choice is jquery until now

Re: [PHP] Best ajax library

2009-12-14 Thread Ali Asghar Toraby Parizy
Hi I think the best choice is jquery until now. But, is it reasonable to combine jquery and other library to client side and server side scripting respectively? By the way, where i can find good lessons about jquery and php? On Mon, Dec 14, 2009 at 1:16 PM, Angelo Zanetti ang...@zlogic.co.za

[PHP] Best ajax library

2009-12-12 Thread Ali Asghar Toraby Parizy
Hi friends. What ajax library do you suggest for php developers? Can i use gwt with php, or It is compatible only with java web applications? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Best ajax library

2009-12-12 Thread Ali Asghar Toraby Parizy
Thanks for your replies. Which one is better for GUI building? I'm looking for a ajax library that is comfortable for client side applications. I think php is plenty comfortable For server side issues, so I can't see any reason to toil in experiencing new technologies. On Sat, Dec 12, 2009 at

Re: [PHP] Can I get the IP address from a visitor?

2009-12-01 Thread Ali Asghar Toraby Parizy
It is very simple: $ip=$_SERVER['REMOTE_ADDR']; On Tue, Dec 1, 2009 at 1:47 PM, Lester Caine les...@lsces.co.uk wrote: Lars Kristiansson wrote: Hi! This is probably the wrong forum. Please redirect me if im out of place. I would like to find out what IP address my visitor uses when

Re: [PHP] How to create a web application like igoogle?

2009-11-21 Thread Ali Asghar Toraby Parizy
:15 +0330, Ali Asghar Toraby Parizy wrote: Hi How can i create a web page that include some gadgets? what kind of technology do i have to use to creating web pages like igoogle and gmail? How can i create them by php? Wow! Well, first what is it you want to do? Make another iGoogle or Gmail

[PHP] How to create a web application like igoogle?

2009-11-20 Thread Ali Asghar Toraby Parizy
Hi How can i create a web page that include some gadgets? what kind of technology do i have to use to creating web pages like igoogle and gmail? How can i create them by php?

[PHP] Hash function

2009-11-09 Thread Ali Asghar Toraby Parizy
hi friends I need a hash function to build a Unique serial number by mixing a request code and a user name request codes are strings like this: They are literally HEX codes of MAC mac addresses.

[PHP] Paypal transaction

2009-11-09 Thread Ali Asghar Toraby Parizy
Hi friends I have an application I want to sell it in my website How can i use PayPal to marketing? i understand php so i am eager to write some php code, myself. How can i implement a php code to use PayPal gateway Thanks for any help

Re: [PHP] Hash function

2009-11-09 Thread Ali Asghar Toraby Parizy
of user name that is known for a probable jobber user. what do you think about it? On Mon, Nov 9, 2009 at 3:09 PM, John Black s...@network-technologies.orgwrote: Ali Asghar Toraby Parizy wrote: hi friends I need a hash function to build a Unique serial number by mixing a request code and a user

Re: [PHP] Anyone using Aptana and Xdebug? Or other debugger recommendations besides Zend?

2009-11-09 Thread Ali Asghar Toraby Parizy
On Mon, Nov 9, 2009 at 7:58 PM, Martin Scotta martinsco...@gmail.comwrote: On Mon, Nov 9, 2009 at 1:04 PM, Arno Kuhl ak...@telkomsa.net wrote: -Original Message- From: Dave M G [mailto:mar...@autotelic.com] Sent: 09 November 2009 05:36 PM To: php-general@lists.php.net Subject:

[PHP] How to create Data Auto-Filters using PEAR Spreadsheet Writer ?

2009-07-13 Thread Ali, Saqib
Hello All, Is there a way to create Data Auto-Filters using PEAR's Spreadsheet Writer? Thanks saqib http://www.capital-punishment.us -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Programming general question

2009-01-28 Thread Usamah M. Ali
On Wed, Jan 28, 2009 at 11:07 PM, Terion Miller webdev.ter...@gmail.com wrote: On Wed, Jan 28, 2009 at 3:54 AM, Ondrej Kulaty kopyto...@gmail.com wrote: Thanks for all the information, I was asking because I inherited thousands of lines of code that had used mysql_fetch_object(), yet I kept

Re: [PHP] Zend (or other) Framework...where to start?

2009-01-14 Thread Usamah M. Ali
On Thu, Jan 15, 2009 at 1:59 AM, Paul M Foster pa...@quillandmouse.com wrote: If you're going to go with a prebuilt framework, I'd recommend CodeIgniter for your first time out. If the docs look good to you (and they are pretty good), you'll probably do fine with it. It's about the lightest

Re: [PHP] Re[2]: Path of the class file of an object

2008-09-08 Thread Ali Çevik
files in a single directory. And it's rather messy.. On Mon, Sep 8, 2008 at 12:24 PM, Jochem Maas [EMAIL PROTECTED] wrote: don't top post. Ali Çevik schreef: Hi, I guess the word meaningless depends on what you are trying to do. So, I guess I have to describe what I'm trying to do

Re: [PHP] Re[2]: Path of the class file of an object

2008-09-07 Thread Ali Çevik
also thankfully appreciate if you have an idea to do that in a better way. thanks, Ali. On Sun, Sep 7, 2008 at 5:35 AM, ANR Daemon [EMAIL PROTECTED] wrote: Greetings, Ali Çevik. In reply to Your message dated Sunday, September 7, 2008, 1:51:33, I need a procedure or an implementation

[PHP] Path of the class file of an object

2008-09-06 Thread Ali Çevik
or at least has an implementation of it. Thanks in advance, Ali Çevik

[PHP] Re: Path of the class file of an object

2008-09-06 Thread Ali Çevik
Hmm, that should do the trick. Thanks a lot! But still, I wish there were a way of doing that, without altering the class behaviour. Ali Cevik. On Sat, Sep 6, 2008 at 11:58 PM, Stut [EMAIL PROTECTED] wrote: On 6 Sep 2008, at 20:08, Ali Çevik wrote: I need a procedure

Re: [PHP] Re: why are passwords stored encrypted in databases even when thedatathey protect is stored in the same database?

2008-06-13 Thread Usamah M. Ali
Taking into mind that email addresses extracted out of hacked databases is one of the main spam industry seeders, I always wonder why web application developers don't consider encrypting emails the same way they consider encrypting password! Once a hacker has full access to a database, an

Re: [PHP] Re: Forum coded in PHP with mail and news gateway

2008-06-12 Thread Usamah M. Ali
On Thu, Jun 12, 2008 at 4:34 PM, Bastien Koert [EMAIL PROTECTED] wrote: PHP does not support threading AFIAK. He probably meant threading as in forum threads, i.e. topics where discussions are presented in a threaded way. Regards, Usamah -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Re: Quickly verifying single word.

2008-06-05 Thread Usamah M. Ali
On Thu, Jun 5, 2008 at 9:19 AM, Per Jessen [EMAIL PROTECTED] wrote: Shawn McKenzie wrote: if (preg_match('/[\s]*/', $string) === false) { echo 'No spaces!'; } -Shawn Second one doesn't work for some reason. No time now to test, will later. How about: if (preg_match('/\s/',

Re: [PHP] Re: Quickly verifying single word.

2008-06-05 Thread Usamah M. Ali
On Thu, Jun 5, 2008 at 12:02 PM, Usamah M. Ali [EMAIL PROTECTED] wrote: Won't work either. The problem lies in using the === comparison operator. preg_match() returns 0 if no match is found, and FALSE if an error occurred. So using === will always echo 'No spaces' whether there were spaces

Re: [PHP] A problem with fgets()

2008-06-05 Thread Usamah M. Ali
Well, finally found an explanation and a solution: calling fgets() twice. Because if there's no length limit supplied (and it's not EOF) when calling the function, it continues reading until it finds the first newline character. So calling fgets() again will ensure that it will read from the

[PHP] A problem with fgets()

2008-05-29 Thread Usamah M. Ali
Hello, I have a function that picks up a random entry from a file consisting of city names, each name on a separate line. The random value is generated by rand() before fseek()ing to the position determined by it. The problem is that when using fgets() to get a random line, it returns a part of

Re: [PHP] A problem with fgets()

2008-05-29 Thread Usamah M. Ali
On Fri, May 30, 2008 at 3:38 AM, Chris [EMAIL PROTECTED] wrote: fseek doesn't go to the start of a line, it goes to a particular byte - so that's where the problem lies (not with fgets). There's no function (that I could see) which would go to the start of the line based on that offset (I

Re: [PHP] A problem with fgets()

2008-05-29 Thread Usamah M. Ali
On Fri, May 30, 2008 at 4:21 AM, Chris [EMAIL PROTECTED] wrote: I just need to figure out why when using fgets() with fseek() rand(), the script returns partial strings form the city names. Because fseek doesn't necessarily put you at the start of a line. It puts you anywhere (which could

Re: RES: [PHP] page suck attack

2008-05-21 Thread Usamah M. Ali
On Wed, May 21, 2008 at 8:51 PM, robert [EMAIL PROTECTED] wrote: Cool! yes Fasterfox could be it. If anyone cares, it also gave me some clues to what I was looking for: offline browsing. Certainly better keywords than page suck :) thank you everyone! Well, site rippers is a more suitable

Re: RES: [PHP] page suck attack

2008-05-21 Thread Usamah M. Ali
Sorry, the link: http://www.javascriptkit.com/howto/htaccess13.shtml Usamah On Thu, May 22, 2008 at 1:15 AM, Usamah M. Ali [EMAIL PROTECTED] wrote: On Wed, May 21, 2008 at 8:51 PM, robert [EMAIL PROTECTED] wrote: Cool! yes Fasterfox could be it. If anyone cares, it also gave me some clues

Re: [PHP] function returns no value

2008-04-21 Thread Ali Reza Sajedi
I added var_dump($result); to the function. As part of the output I get the following: [fields]= array(1) { [fa]= string(22) ورود به سایت} which is the string which should be returned and printed. The result is there, however, it couldn't be printed. Any ideas? Regards Ali - Original

Re: [PHP] function returns no value

2008-04-21 Thread Ali Reza Sajedi
using $result-fields[fa] did solve the problem. thanks very much Thijs - Original Message - From: Thijs Lensselink [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Monday, April 21, 2008 2:48 PM Subject: Re: [PHP] function returns no value Quoting Ali Reza Sajedi [EMAIL

[PHP] function returns no value

2008-04-20 Thread Ali Reza Sajedi
wrong here? I appreciate any hint. Ali -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] E-Library Software

2008-04-02 Thread Ali Reza Sajedi
Hello, I am looking for an open source php based E-Library sofware. Could anybody help? Regards Ali -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] E-Library Software

2008-03-30 Thread Ali Reza Sajedi
Hello, I am looking for an open source php based E-Library sofware. Could anybody help? Regards Ali -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Adding Categories using Google's PHP API

2007-10-20 Thread Ali, Saqib
I am trying to use the Google's PHP API (ZendGdata) to add Categories (labels/tags) to the posts for a blog. I know how to define Category, but I am at a loss when it comes to adding that Category to a entry (post). Any ideas how this can be done? Any examples will be highly appreciated.

[PHP] A simple PHP script to generate a Pie Chart based on SQL query

2007-08-27 Thread Ali, Saqib
Hello All, I am looking for a simple PHP script that can generate Pie Chart based on SQL query resultset. I don't want a reporting system, as we are already using Crystal Reports for that. Any suggestions? Saqib Ali -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] is there another way ??

2007-01-17 Thread Ali Nasser
can you please check these out and tell me if there another way without installing externsions?? http://groups-beta.google.com/group/cpdevgroup/web/how-easy-is-these-project?_done=%2Fgroup%2Fcpdevgroup%2Fweb%2Fhow-easy-is-these-project%3Fmsg%3Dns

Re: [PHP] Php Error Output Redirection

2006-12-18 Thread Saqib Ali
://www.php.net/unsub.php -- Saqib Ali, CISSP, ISSAP http://www.full-disk-encryption.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Active Directory password change utility in PHP

2006-12-13 Thread Saqib Ali
Another reader on the usenet suggested the followng MS link, which seems pretty helpful: http://support.microsoft.com/kb/269190 saqib http://www.full-disk-encryption.net On 12/13/06, Saqib Ali [EMAIL PROTECTED] wrote: Another reader on the usenet suggested the followng MS link, which seems

Re: [PHP] PHPDIG

2006-12-11 Thread Saqib Ali
-- Saqib Ali, CISSP, ISSAP http://www.full-disk-encryption.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Active Directory password change utility in PHP

2006-12-07 Thread Saqib Ali
Hello All, Last year I wrote a small ASP utility which allowed domain users to change their Active Directory password using a web site. The utility used ADSI (Active Directory Service Interfaces) so it was quite easy to implement. However now we would like to integrated this into our LAMP based

[PHP] LAMP appliance for non-profit use

2006-12-07 Thread Saqib Ali
Hello All, I know this is little bit off-topic but I think users of this group can give good advice on this topic. We have a in-house built application using MySQL + PHP + Apache. It is essentially a elaborate collection of online forms that will be used for managing school scholarship in the

[PHP] Best practices for deleting and restoring records - moving vs flagging

2005-08-11 Thread Saqib Ali
. However if we just flag the record as deleted the restoring is quite easy. Any thoughts/ideas ? -- In Peace, Saqib Ali http://www.xml-dev.com/blog/ Consensus is good, but informed dictatorship is better. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] isUserInRole equivalent in PHP

2005-07-29 Thread Saqib Ali
of this? -- In Peace, Saqib Ali http://www.xml-dev.com/blog/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] isUserInRole equivalent in PHP

2005-07-29 Thread Saqib Ali
Have you checked http://www.php.net/ldap ? yes. couldn't find one. i can implement the function myself. i was just wondering if there is something already available. -- In Peace, Saqib Ali http://www.xml-dev.com/blog/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] PHP Spider/Crawler for Emails possible?

2005-07-29 Thread Saqib Ali
, Saqib Ali http://www.xml-dev.com/blog/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] authentication problem...

2004-12-30 Thread Ali
Hi there this is a tutorial am trying to do...chk out the code.. if ( ( !isset( $PHP_AUTH_USER )) || (!isset($PHP_AUTH_PW)) || ( $PHP_AUTH_USER != 'user' ) || ( $PHP_AUTH_PW != 'open' ) ) { header( 'WWW-Authenticate: Basic realm=Private' ); header( 'HTTP/1.0 401 Unauthorized'

[PHP] authentication

2004-12-27 Thread Ali
Hi everyone... can anyone lead me to a good tutorial on authentication...it wud be good if i can get a one in connection with a database.. thnks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dinamic generate PDF : which way ? (classes, docbook)

2004-09-06 Thread Saqib . N . Ali
: http://www.xml-dev.com/blog/#88 Here are some other utilities to convert to PDF: http://www.xml-dev.com/blog/#101 This one is pretty good: http://html2pdf.seven49.net/seven49.aspx? Thanks. Saqib Ali http://validate.sf.net robert mena [EMAIL PROTECTED] wrote on 09/06/2004 04:56:18 AM: Hi, I

Re: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Saqib . N . Ali
http://cafelog.com/ (PHP + mysql) a very light weight (simple and primitive) blog: http://www.xml-dev.com/blog/ Thanks. Saqib Ali https://validate.sf.net [EMAIL PROTECTED] wrote on 08/31/2004 10:28:09 AM: Does anyone know of Blog sw available in the marketplace written in PHP and maybe

Re: [PHP] OpenLDAP+MD5 Passowrds+PHP != Work?

2004-08-30 Thread Saqib . N . Ali
I don't think this will work. Why do you need to MD5 the passwd if you sending it over LDAPS:?? (LDAP over SSL)? Thanks. Saqib Ali http://validate.sf.net Steven Hildreth [EMAIL PROTECTED] wrote on 08/30/2004 06:33:32 PM: Hi, Attempting to connect to an OpenLDAP server to authenticate

[PHP] CSRF attack not possible in I.E. 6.01 SP1?

2004-08-16 Thread Saqib . N . Ali
question: Is I.E. 6.01 SP1 doing something to foil the CSRF attack, i.e. only allow image extensions .gif .png .jpeg? Regards, Saqib Ali http://validate.sf.net DocBook XML - XHTML / PDF Convertor

RE: [PHP] CSRF attack not possible in I.E. 6.01 SP1?

2004-08-16 Thread Saqib . N . Ali
I.E. is doing in their browsers to prevent CSRF attacks. I m not trying to start a browser war here. Regards, Saqib Ali http://validate.sf.net DocBook XML - XHTML / PDF Convertor Chris Shiflett [EMAIL PROTECTED] No Phone Info Available 08/16/2004 11:17 AM Please respond to [EMAIL PROTECTED

Re: [PHP] CSRF attack not possible in I.E. 6.01 SP1?

2004-08-16 Thread Saqib . N . Ali
Hello Chris, I can't share the exact code ;) , but here is something very similar: img src=http://slashdot.org/my/logout; height=1 width=1 If I load a web page with the above code, it should log me out of slashdot. It works in Mozilla (and netscape), but not in I.E. 6.01 SP1

Re: [PHP] CSRF attack not possible in I.E. 6.01 SP1?

2004-08-16 Thread Saqib . N . Ali
that an CSRF attack will not work, either. Thanks. Saqib Ali http://validate.sf.net XHTML/DocBook XML Validator and Transformer Octavian Rasnita [EMAIL PROTECTED] No Phone Info Available 08/16/2004 12:57 PM To [EMAIL PROTECTED], [EMAIL PROTECTED] cc Jay Blanchard [EMAIL PROTECTED], [EMAIL

Re: [PHP] CSRF attack not possible in I.E. 6.01 SP1?

2004-08-16 Thread Saqib . N . Ali
completely clueless as to why this particular attacks works in Mozilla but not in IE. Any ideas? Thanks. Saqib Ali http://validate.sf.net XHTML/DocBook XML Validator and Transformer Chris Shiflett [EMAIL PROTECTED] No Phone Info Available 08/16/2004 11:55 AM Please respond to [EMAIL PROTECTED

Re: [PHP] CSRF attack not possible in I.E. 6.01 SP1?

2004-08-16 Thread Saqib . N . Ali
are in the context of the website to which the cookies belong. Maybe Chris can correct me, if I am wrong here. Thanks. Saqib Ali http://validate.sf.net XHTML/DocBook XML Validator and Transformer Curt Zirzow [EMAIL PROTECTED] No Phone Info Available 08/16/2004 02:40 PM To [EMAIL PROTECTED] cc Subject Re

RE: [PHP] CSRF attack not possible in I.E. 6.01 SP1?

2004-08-16 Thread Saqib . N . Ali
line a web page of your choice, and then load the web page. If you are using Mozilla, it will log you off from /. However in the latest build of I.E. it doesn't work, whereas it should work. Thanks. Saqib Ali http://validate.sf.net XHTML/DocBook XML Validator and Transformer Ed Lazor

RE: [PHP] CSRF attack not possible in I.E. 6.01 SP1?

2004-08-16 Thread Saqib . N . Ali
Thanks Curt, Chris and Ed, It is indeed the disabling of third-party cookies that is causing this behaviour in I.E. :) So thanks all the help :) Thanks. Saqib Ali http://validate.sf.net XHTML/DocBook XML Validator and Transformer Ed Lazor [EMAIL PROTECTED] No Phone Info Available 08/16

[PHP] Re: [PHP-INSTALL] Re: [PHP] Netegrity's siteminder + PHP + Apache

2004-08-12 Thread Saqib . N . Ali
. Saqib Ali http://validate.sf.net XHTML/DocBook XML Validator and Transformer Regards, Saqib Ali https://downloads.seagate.com Click to download latest desktop applications Sam Evans [EMAIL PROTECTED] No Phone Info Available 08/12/2004 06:40 AM To [EMAIL PROTECTED] [EMAIL PROTECTED] cc [EMAIL

[PHP] Netegrity's siteminder + PHP + Apache

2004-08-11 Thread Saqib . N . Ali
Hello All, Does anyone of any good documentation for compiling Netegrity's Siteminder module with Apache for use in a PHP based application? Thanks. Saqib Ali http://validate.sf.net XHTML/DocBook XML Validator and Transformer

[PHP] SQL Injection check (mysql)

2004-03-21 Thread Ali Ashrafzadeh
Hi I'm looking for a function To check SQL Injection in Mysql RDBMS please tell me if anyone know good function or solution thank's

[PHP] yahoo route my mail's to bulk folder

2004-03-16 Thread Ali Ashrafzadeh
hi and thank's my friend's in a web application I send mail message to members using mail() function in HTML format but yahoo mail server route my messages to bulk folder , I want know if there is any setting requiered in my script to send mail correctly, PHPINFO() function return

[PHP] I have a problem In Mail Function

2004-03-15 Thread Ali Ashrafzadeh
Hi In a web application I need to send mail for each members whith a different content . mail message must be in HTML Format and 1256 code page I call mail() functoin in a simple loop to send multiple mail message with differrent content. now I want know that is any body know better method to

[PHP] MySQL Connection

2004-03-04 Thread Shawn . Ali
Hi There, I'm trying to establish a first time connection to MySQL running on Win 2000. I have loaded the application and have entered a user name and password. The code that I am entering to establish a connection is: ?php $conn=mysql_connect(localhost, test, test); Echo $conn; ? I get a

[PHP] Re: php editor?

2003-06-15 Thread M-Ali Mahmoodi
thanks all for all i will test them M-Ali Mahmoodi [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] hi all i'm a beginner in php can anyone help me about useful and powerful editors in php? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] php editor?

2003-06-15 Thread M-Ali Mahmoodi
if no newer editors? so the old messages suggest the older! Lars Torben Wilson [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Sat, 2003-06-14 at 12:59, electroteque wrote: boy how painfully dweebish is vi why make it harder for yourself :O Please don't start this again. If you

[PHP] php editor?

2003-06-14 Thread M-Ali Mahmoodi
hi all i'm a beginner in php can anyone help me about useful and powerful editors in php? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] colorizing output in bash

2003-02-16 Thread Ali Chahvand
; in the bash works fine but doesn't in php. The bold stuff work fine using php and bash , so i was wondering why this behavior shows up. any clues, or redirections to other mailing lists? regards Ali -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] phpSearch

2002-06-06 Thread Ali Reza Sajedi
Hello, try this: http://www.digitalgenesis.com/software/dgssearch.html --- Ali Reza Sajedi Webentwicklung und -betreuung BUP Goettingen 0551/54707-41 [EMAIL PROTECTED] http://www.bupnet.de

[PHP] header (Location: URL);

2002-02-21 Thread Ali
Hello, is there any possibility of redirecting a request URL using header:Location and openning the requested URL in a new window linke target=blank in html. Thank you. Ali -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Redirection and Passing Data (arrays)

2002-01-19 Thread m. ali
o.com.br/wishlistclient.asp?wlid=664176742884 M. Ali [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... hi may can some body help me I'm writing a shopping cart system where the user can search for a product. the search result is a page with numbe

[PHP] Redirection and Passing Data (arrays)

2002-01-15 Thread m. ali
hi may can some body help me I'm writing a shopping cart system where the user can search for a product. the search result is a page with number of items where the user can select some them using checkboxes and enter the quantity that he needs, then add them to his shopping cart this works

[PHP] checkboxes vs text filed array and hidden variables

2002-01-14 Thread m. ali
Hi my problem : i have to pass the price, and part number which i get from the database to the shopping cart so when i select some of the items by checking the checkboxes and submit the form i get only the last item in the list i use hidden variables to pass these values to shopping cart. my

  1   2   >