On Wed, Jan 02, 2002 at 09:20:35AM +0530, Tarique Sani <tarique@...>
wrote:
>
> For a general portal like site try
>
> http://www.phpnuke.org
Or postnuke:
http://www.postnuke.org
-Gaurav
[Non-text portions of this message have been removed]
On Wed, Jan 02, 2002 at 12:12:24PM +0530, Tarique Sani <tarique@...>
wrote:
>
> That typically means 30-50 titles
>
> Out of them 3-4 are PHP, several are repeat releases and only few are
> really interesting
>
> To give an idea in the past 8 months I have collected only 28 items which
> I found interesting.
How true! I had subscribed to the FreshMeat Newsletter some time ago
but eventually unsubscribed 'coz I was just downloading the huge mails
and never getting around to going through them.
> So I thought I would share this with the list ... ...
Please do. Please also send the previous 28 that you have
collected. Perhaps you could send them like your TODs over a period of
time in case anyone would object to one largish mail.
-Gaurav
--
Sleep: A completely inadequate substitute for caffeine.
[Non-text portions of this message have been removed]
hi all,
This is Arup in Bangalore. Happy new year to all. I wanted to know if anyone has
implemented any COM objects in PHP from a *nix machine to talk to a NT server
having the COM objects.
Any pointers appreciated.
best,
Arup Bhanja,
JP Nagar 6th ph.
Bangalore 560078,
INDIA.
On Thu, 3 Jan 2002, Balaji N wrote:
|Hi,
|There are some sites like geocities, tripod etc where we can create our
|web pages.
|
|Is there a similar site where i can host my pages with php support.
spaceports.com
free.fr (but you need to be a french resident! I have an account with them
and they are the best free hosting service on the planet!)
There is one other german site that offers php support.
Kingsly
On Thu, 3 Jan 2002, Arpith Jacob wrote:
> ....OR THIS??....
>
> // Print the row with the colour value...
> printf("<tr bgcolor=\"%s\"><td>$i</td></tr>\n",
> $colours[$i % count($colours)]);
This is really cool!!
and will work as long as there is $i to act as a counter,
BUT the over head of adding $i++ is much less than adding array_unshift
So this is is unarguably a better way to do it - post it on Zend guy!!
Thanks
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
> Here is a cool trick - with just two lines of code
you can have your table
> rows colored differently
....OR THIS??....
// Print the row with the colour value...
printf("<tr bgcolor=\"%s\"><td>$i</td></tr>\n",
$colours[$i % count($colours)]);
Arpith
__________________________________________________
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com
On Thu, 3 Jan 2002, Balaji N wrote:
> There are some sites like geocities, tripod etc where we can create our
> web pages.
>
> Is there a similar site where i can host my pages with php support.
http://www.free-php-hosting.com/http://www.clickherefree.com/
These two URLs came up when I did a google search for "free hosting" +php
Look them up and post a reply if you find a resource which is worth a
look
WE can add then to the mail list Bookmarks section
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
Hi,
There are some sites like geocities, tripod etc where we can create our
web pages.
Is there a similar site where i can host my pages with php support.
tia
-balaji
--
Flugg's Law:
When you need to knock on wood is when you realize
that the world is composed of vinyl, naugahyde and aluminum.
On Thu, 3 Jan 2002, BALU.S.MENON wrote:
> I am very new to PHP and I have just started working on PHP. Can
> anyone
> tell me some websites that make use of PHP. I just want to have a feel of
> it.
Welcome Balu,
Once again - there are websites and softwares available for everything
(almost:-) under PHP
So please specify what kind of functionality you are looking for
One of my PHP sites is http://www.aaina-e-ghazal.com which incorporates
lot of unique stuff - look it over and feel free to ask about any
fuctionality which you feel would be useful for you
Cheers
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
On Thu, 3 Jan 2002, BALU.S.MENON wrote:
| I am very new to PHP and I have just started working on PHP. Can anyone
|tell me some websites that make use of PHP. I just want to have a feel of
|it.
Check out http://www.php.net/links.php
more than sites running php.. check the apps that are written in php ..
that will give you a better view of it's capabilities.
In case you didn't know... http://freshmeat.net/ is the best place to find
any application that you need... and the site itself is written in php.
Kingsly
Hi,
I am very new to PHP and I have just started working on PHP. Can anyone
tell me some websites that make use of PHP. I just want to have a feel of
it.
Thanks and Regards
Balu
Here is a cool trick - with just two lines of code you can have your table
rows colored differently
The example below is complete !!
------------
<table cellpadding=0 cellspacing=0 border=0 width=100%>
<?
// Define the colours...
$colours = array();
$colours[] = "#EDEDED";
$colours[] = "#CCCCCC";
$colours[] = "#FFFFFF";
// Loop through from 10 -> 15
for ($i = 1; $i <= 15; $i++){
// Print the row with the colour value...
printf("<tr bgcolor=\"%s\"><td>$i</td></tr>\n", $colours[0]);
// Now for the magic... First we take the last value off the end
// of the array
// and pop it onto the beginning...
array_unshift($colours, $colours[count($colours)-1]);
// array_unshift does this nicley, and I've added the
// "count($colours)-1"
// bit so you can have as many colours as you need...
// Then we remove the last element of the array...
array_pop($colours);
}
?>
</table>
--------------
source (www.Zend.com)
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
On Wed, 2 Jan 2002, Harish Thota wrote:
> That really is a priceless collection. I think you should definitely
> share
> it with us. We will be more than happy if you can do this. All your
> research
> will be very useful to us.
http://groups.yahoo.com/group/in-phpug/files/php-freshmeat.zip
Here is a zip file 10kb with text files containing relevant details of
apps
Note: these are the apps which *I* found interesting and is by no means
representative of PHP apps on Freshmeat and is definitely a miniscule of
what really is available
Cheers
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
On Wed, 2 Jan 2002, Kedarnath wrote:
> I am an ASP - VB Programmer and wish to port some of my apps to PHP I
> came across a tool asp-php
That is the only one currently listed and that also does not do the job
throughly
> can anyone suggest such tools which would enable me to shift apps fro
> asp-IIS-COM to LInux-PHP
Why not shift to PHP-IIS-COM to begin, here asp-php will be of maximum use
PHP-COM works ... ...
This is am saying becuase you mentioned COM, if you are not using too many
COM objects then shift to LAMP (Linux, Apache, MySQL and PHP)
Cheers
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
>>>>To give an idea in the past 8 months I have collected only 28 items
which
I found interesting.
That really is a priceless collection. I think you should definitely share
it with us. We will be more than happy if you can do this. All your research
will be very useful to us.
Thanks a lot Dr.Tarique,
Harish
-------Original Message-------
From: in-phpug@yahoogroups.com
Date: Wednesday, January 02, 2002 02:07:12 PM
Cc: Indian PHP user group
Subject: Re: [in-phpug] [fm] XPC - A PHP application server!
On Wed, 2 Jan 2002, Balaji N wrote:
> > Thought that this might interest a lot of people
> Would suggest u post the link to get subscribed to the announce news
> letter. People who might be interested may join it.
> feel this would be a waste of bandwidth :-)
The problem is Freahmeat announce in not just for PHP it has all softwares
announced on http://www.freshmeat.net for the day!!
That typically means 30-50 titles
Out of them 3-4 are PHP, several are repeat releases and only few are
really interesting
To give an idea in the past 8 months I have collected only 28 items which
I found interesting.
So I thought I would share this with the list ... ...
Of course if more people object then I will shut up
if few object they can always filter it with the [fm] prefix
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
To unsubscribe from this group, send an email to:
in-phpug-unsubscribe@yahoogroups.com
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
ya i think that is an excellent idea. please do it Dr.Tarique. It will be of
immense value. Your research will not be wasted and it will be helpful to
all of us.
Thanks,
Harish
-------Original Message-------
From: in-phpug@yahoogroups.com
Date: Wednesday, January 02, 2002 02:07:08 PM
To: in-phpug@yahoogroups.com
Subject: [in-phpug] [fm] XPC - A PHP application server!
Hello folks,
Thought that this might interest a lot of people
Also I often save interesting PHP apps from freshmeat announce newsletter
Would if be preferable if I post them here as well - I will prefix it with
[fm]
Speak up folks!!
We have a group here
Tarique
---------------------------
[041] - XPC 0.1
by Michael Glazer (http://freshmeat.net/users/xpc/)
Monday, December 31st 2001 10:02
About: XPC is a PHP application development enviroment similar to Zope. It
is a pipeline or tunnel application that can help you quickly create
dynamic Web applications such as portal and intranet sites. XPC comes with
membership, search, news, and more. Its easy-to-use tools allow teams to
productively and safely work together. XPC provides top-notch access to
databases and other legacy data. Its open support for Web standards such
as
SMTP, POP, FTP, and XML-RPC allows you flexibility and interoperability.
XPC consists of a number of components which work together to provide a
complete yet flexible application server package. XPC includes an XML-RPC
server, an object-oriented database schema, a search engine, a database
virtual file mapping system, a Web page templating system, a Web-based
development and management tool, and comprehensive extension support.
Changes: The license is now the LGPL. This release introduces an automatic
setup and a working management library that is getting closer to
completion.
License: GNU Lesser General Public License (LGPL)
URL: http://freshmeat.net/projects/epoc/
------------------------------
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Tiny Wireless Camera under $80!
Order Now! FREE VCR Commander!
Click Here - Only 1 Day Left!
http://us.click.yahoo.com/WoOlbB/7.PDAA/ySSFAA/saFolB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
in-phpug-unsubscribe@yahoogroups.com
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
HI
I am an ASP - VB Programmer and wish to port some of my apps to PHP I came
across a tool asp-php
can anyone suggest such tools which would enable me to shift apps fro
asp-IIS-COM to LInux-PHP
[Non-text portions of this message have been removed]
On Wed, Jan 02, 2002 at 12:12:24PM +0530, Tarique Sani <tarique@...>
wrote:
| Of course if more people object then I will shut up
| if few object they can always filter it with the [fm] prefix
[fm] or [OT] prefix would be nice.
chyrag.
--
Chirag Kantharia, symonds.net/~chyrag/
okay. i understand.
-balaji
On Wednesday 02 January 2002 12:12 pm, you wrote:
> On Wed, 2 Jan 2002, Balaji N wrote:
> > > Thought that this might interest a lot of people
> >
> > Would suggest u post the link to get subscribed to the announce
> > news letter. People who might be interested may join it.
> > feel this would be a waste of bandwidth :-)
>
> The problem is Freahmeat announce in not just for PHP it has all
> softwares announced on http://www.freshmeat.net for the day!!
>
> That typically means 30-50 titles
>
> Out of them 3-4 are PHP, several are repeat releases and only few are
> really interesting
>
> To give an idea in the past 8 months I have collected only 28 items
> which I found interesting.
>
> So I thought I would share this with the list ... ...
>
> Of course if more people object then I will shut up
>
> if few object they can always filter it with the [fm] prefix
>
> Tarique
--
Marriage, n.:
The evil aye.
On Wed, 2 Jan 2002, Balaji N wrote:
> > Thought that this might interest a lot of people
> Would suggest u post the link to get subscribed to the announce news
> letter. People who might be interested may join it.
> feel this would be a waste of bandwidth :-)
The problem is Freahmeat announce in not just for PHP it has all softwares
announced on http://www.freshmeat.net for the day!!
That typically means 30-50 titles
Out of them 3-4 are PHP, several are repeat releases and only few are
really interesting
To give an idea in the past 8 months I have collected only 28 items which
I found interesting.
So I thought I would share this with the list ... ...
Of course if more people object then I will shut up
if few object they can always filter it with the [fm] prefix
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Wednesday 02 January 2002 11:45 am, you wrote:
> Hello folks,
>
> Thought that this might interest a lot of people
>
Hi
Would suggest u post the link to get subscribed to the announce news
letter. People who might be interested may join it.
feel this would be a waste of bandwidth :-)
- -balaji
> Also I often save interesting PHP apps from freshmeat announce
> newsletter
>
> Would if be preferable if I post them here as well - I will prefix it
> with [fm]
>
> Speak up folks!!
>
> We have a group here
>
> Tarique
>
- --
Carperpetuation (kar' pur pet u a shun), n.:
The act, when vacuuming, of running over a string at least a
dozen times, reaching over and picking it up, examining it, then
putting it back down to give the vacuum one more chance.
-- Rich Hall, "Sniglets"
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org
iD8DBQE8Mq7xIar0Rc5ZY40RAgyfAKD9UUPVx0oV7BnCF1lKL2m6UNrA7gCg1MzG
QViU2cAU3J53uNl92w0QMTs=
=5ZPZ
-----END PGP SIGNATURE-----
Hello folks,
Thought that this might interest a lot of people
Also I often save interesting PHP apps from freshmeat announce newsletter
Would if be preferable if I post them here as well - I will prefix it with
[fm]
Speak up folks!!
We have a group here
Tarique
---------------------------
[041] - XPC 0.1
by Michael Glazer (http://freshmeat.net/users/xpc/)
Monday, December 31st 2001 10:02
About: XPC is a PHP application development enviroment similar to Zope. It
is a pipeline or tunnel application that can help you quickly create
dynamic Web applications such as portal and intranet sites. XPC comes with
membership, search, news, and more. Its easy-to-use tools allow teams to
productively and safely work together. XPC provides top-notch access to
databases and other legacy data. Its open support for Web standards such
as
SMTP, POP, FTP, and XML-RPC allows you flexibility and interoperability.
XPC consists of a number of components which work together to provide a
complete yet flexible application server package. XPC includes an XML-RPC
server, an object-oriented database schema, a search engine, a database
virtual file mapping system, a Web page templating system, a Web-based
development and management tool, and comprehensive extension support.
Changes: The license is now the LGPL. This release introduces an automatic
setup and a working management library that is getting closer to
completion.
License: GNU Lesser General Public License (LGPL)
URL: http://freshmeat.net/projects/epoc/
------------------------------
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
On Wed, 2 Jan 2002, Enterux Solutions wrote:
> Hi Tarique
>
> On Wed, 2 Jan 2002 07:42:47 +0530 (IST), "Tarique Sani"
> <tarique@...> wrote:
>
> >Also if you are not really interested in reinventing the wheel try using
> >preexisting softwares for your site design.
> >
>
> Can you plesae list out the softwares, please.
There are softwares available for almost any task - like I said in my
previous mail - list out the task you want to do....
For a general portal like site try
http://www.phpnuke.org
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
Hi Tarique
On Wed, 2 Jan 2002 07:42:47 +0530 (IST), "Tarique Sani" <tarique@...>
wrote:
>Also if you are not really interested in reinventing the wheel try using
>preexisting softwares for your site design.
>
Can you plesae list out the softwares, please.
rahul
On Wed, 2 Jan 2002, Harish Thota wrote:
Hello Harish,
> and create a site for our art company. Can some one in this list help me
> locate some sites/resources with good tutorials for newbies? I could have
> got this information from google or some other search engine but I am no
> interested in re-inventing the wheel. I know some of the PHP experts here
Try www.phpbuilder.com
Also if you are not really interested in reinventing the wheel try using
preexisting softwares for your site design.
Send some details on what you would like at your site and I will be able
to suggest what to use.
Cheers
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
I would be posting Tip Of the Day to keep this alive till it achieves a
critical mass. These mails would be prefixed [TOD] in the subject
line.
So here it goes
----------------------
To gain a lot of information on what is happening within you php script
stick a
phpinfo();
statement at the end of your script
----------------------
Cheers
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================
Hello Everyone,
I am new to PHP, with working knowledge of HTML. I would like to learn PHP
and create a site for our art company. Can some one in this list help me
locate some sites/resources with good tutorials for newbies? I could have
got this information from google or some other search engine but I am no
interested in re-inventing the wheel. I know some of the PHP experts here
must be patronising few PHP sites which they may feel is the best for
newbies. Can they post some information about it to the list? Thanks a lot
in advance for your help...
Regards,
Harish
Hello Folks,
Anyone and everyone who is interested in PHP the world's most popular
scripting language is invited to joing the Indian PHP User Group.
Share your code, your problem, search for solutions, create fantastic new
projects
And most importantly *ENJOY*
Cheers and a happy new year
Tarique
--
==========================================================
PHP Applications for E-Biz : http://www.sanisoft.com
The Ultimate Ghazal Lexicon: http://www.aaina-e-ghazal.com
==========================================================