[PHP] any package for lost and found

2003-04-06 Thread SayOrange.com
I am working on a project that shall have a section for 'Lost and Found' people lists with photographs. Does anyone knows of any package or code that could be reused here. Thanks in advance. -- -- SayOrange.com http://www.sayorange.com -- PHP General Mailing List (http://www.php.net/) To

[PHP] alignment

2003-04-06 Thread Diksha Neel
dear all, hi! an html file is being created by my php script. i have used tables for the alignment of html file's text and images. i have an image and the value of variable $cname to be displayed in a cell. i want both of these items to appear on the same line. but what happens is the $cname

php-general Digest 6 Apr 2003 11:10:18 -0000 Issue 1982

2003-04-06 Thread php-general-digest-help
php-general Digest 6 Apr 2003 11:10:18 - Issue 1982 Topics (messages 142538 through 142580): Re: HTTP or HTTPS 142538 by: Rasmus Lerdorf 142541 by: Alexander Weber Re: error while quering from MSSQL server from a Linux box 142539 by: Alexander Weber Re: newbie

Re: [PHP] alignment

2003-04-06 Thread Leif K-Brooks
This has asbolutley nothing to do with PHP! Ask it on an HTML list. Diksha Neel wrote: dear all, hi! an html file is being created by my php script. i have used tables for the alignment of html file's text and images. i have an image and the value of variable $cname to be displayed in a cell.

Re: [PHP] alignment

2003-04-06 Thread Haseeb Iqbal
this is off topic but anyway try this table border=1 width=100% height=430 tr td width=100% colspan=2 height=61 nowrapimg src=C:\DocumentsandSettings\mangesh\My Documents\My pictures\crows_eating_md_wht.gif align=ansMiddle div align=centerh1u'; $string.=$wname;

Re: [PHP] Re: Q. Adding line numbers to highlighted source

2003-04-06 Thread Alan McFarlane
I suspect that is because of the regex code evaluation; but thanks for the suggestion anyway. BTW, I found a way to speed (my version) even more, something that I still forget to use on a regular basis but has been proven to be ~extremely~ good at boosting speed: replace: for ($i = 0; $i

[PHP] counting words.

2003-04-06 Thread Sebastian
hello, I am trying to count the words from text that is fetched from mysql, It works, but it's a little inaccurate.. It's about 5 - 10 words off, My guess it's probably counting some HTML or something. Is there a more accurate way of counting words? $row[12] = strip_tags(strtr($row[12],

Re: [PHP] counting words.

2003-04-06 Thread Justin French
It depends on what you define as a word, but let's take the simple approach of stripping HTML et al, and exploding the string on the spaces, then counting the array of words: ? $str = This is my b text /b that I want to count; $words = explode(' ', strip_tags($str)); $count = count($words); ?

Re: [PHP] Great Opportunity for all group members!!!

2003-04-06 Thread sunfire
since this doesnt apply to php in any way whatsoever or any php code i think it should be kept off of the php mailing list actually it sort of looks like spam/junk mail - Original Message - From: Chinmoy Barua [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, April 06, 2003 2:43 AM

Re: [PHP] Great Opportunity for all group members!!!

2003-04-06 Thread SayOrange.com
hmm...this is spamming!! sunfire wrote: since this doesnt apply to php in any way whatsoever or any php code i think it should be kept off of the php mailing list actually it sort of looks like spam/junk mail - Original Message - From: Chinmoy Barua [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] Great Opportunity for all group members!!!

2003-04-06 Thread sunfire
well in my case all i have to do is just push the block button on the message and *poof* all gone... even on the php list thats all i have to do (all the messages get sent to me from the original sender not the mailing list itself).. - Original Message - From: daniel [EMAIL PROTECTED]

[PHP] RE: [newbie] drop down boxes

2003-04-06 Thread Bobby Rahman
Hiya, I have created a dynamic table within my form. Above the table I want to insert a filter to order by:the column names Here is the static list: select name=select4 optionSeverity/option optionCrash/option optionMajor/option optionMinor/option

Re: [PHP] counting words.

2003-04-06 Thread Jome
Justin French wrote: It depends on what you define as a word, but let's take the simple approach of stripping HTML et al, and exploding the string on the spaces, then counting the array of words: ? $str = This is my b text /b that I want to count; $words = explode(' ', strip_tags($str));

Re: [PHP] Fast Templates error in PHP 4.3.1 ?

2003-04-06 Thread rush
Travel Jadoo [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] PHP 4.3.1 apparently doesn't allow anymore assigning of the same function name twice which FastTemplates still does around line 630 with function clear_assign for a perl module alias. So Fast Template users beware! but

[PHP] Permission issues with fopen on window xp pro.

2003-04-06 Thread Paul Kraus
I am working with chapter 10 in wrox Beginning php 4 book. I am running my test system on windows XP pro. I believe this error is due to a permissions setting. But when I look at the properties for the default web page read write and scripts are all checked. Error: Warning: fopen(./counter.dat)

Re: [PHP] any package for lost and found

2003-04-06 Thread Jason Sheets
Take a look at the Classifieds section on www.hotscripts.com/PHP Jason SayOrange.com wrote: I am working on a project that shall have a section for 'Lost and Found' people lists with photographs. Does anyone knows of any package or code that could be reused here. Thanks in advance. -- PHP

Re: [PHP] Re: Q. Adding line numbers to highlighted source

2003-04-06 Thread Philip Olson
FWIW: There is a proposal to add a runtime option to view line numbers in the source, something like: http://www.example.com/hi.phps?SHOW_LINENUMBERS In fact, some even thought it was applied but alas it never was. There is a little information on this feature request here:

Re: [PHP] RE: [newbie] drop down boxes

2003-04-06 Thread Philip Olson
On Sun, 6 Apr 2003, Bobby Rahman wrote: Hiya, I have created a dynamic table within my form. Above the table I want to insert a filter to order by:the column names Here is the static list: select name=select4 optionSeverity/option optionCrash/option

RE: [PHP] Permission issues with fopen on window xp pro.

2003-04-06 Thread John W. Holmes
What web server are you running? Are you using NTFS? PHP runs as the web server (generally) so you have to make sure that user has permission to access the file. If you're using IIS, it's the IUSR_computer_name user. ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals.

[PHP] creating new mail account on a domain

2003-04-06 Thread Lars Tvedt
How do i create a new mail account on a domain? My domain is waveartists.com and I wish to create a new mail account without using the server admin panel. but rahter using a php script. Do anyone know how to do this? any help appreciated.

RE: [PHP] creating new mail account on a domain

2003-04-06 Thread Mark Douglas
This is entirely dependant on what mail server you are running, how it's configured, and what tools you have at your disposal for controlling it (CLI, web, ...). If you actually want help with this issue, we're going to need a lot more detail. -Original Message- From: Lars Tvedt

Re: [PHP] Great Opportunity for all group members!!!

2003-04-06 Thread -{ Rene Brehmer }-
Luckily I've trained my mailserver to see spam a mile away ... so it's only when the lists are spammed I actually see spam ... because I have to whitelist those addresses, otherwise all mail from people's work addresses would get into the spamtrap...but then atleast the spam reporting gets

RE: [PHP] Great Opportunity for all group members!!!

2003-04-06 Thread John W. Holmes
Off topic, but here is a great report on the origins of spam: http://www.cdt.org/speech/spam/030319spamreport.pdf ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -Original Message- From: -{ Rene Brehmer }-

Re: [PHP] creating new mail account on a domain

2003-04-06 Thread Lars Tvedt
I have a Linux Server with PHP installed. that all i know.. imap and all the mail stuf are also installed but thats all i know.. LT. Mark Douglas [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] This is entirely dependant on what mail server you are running, how it's configured, and