php-windows Digest 12 Apr 2007 06:02:58 -0000 Issue 3190
Topics (messages 27667 through 27672):
Lyro Blog Release
27667 by: PR2blog - Lyro.com
Re: change ? into 'slash'
27668 by: bedul
Calling PHP from PHP
27669 by: Alf Stockton
27670 by: Hartleigh Burton
27671 by: sam rumaizan
27672 by: John Comerford
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
Press Release to Blog Publishers
Lyro.com Launches Business Card 2.0
New digital business card directory helps users brand themselves
Release date: March 29, 2007
Minneapolis, MN - We're introducing Lyro - the business card 2.0. You
are part of a select group of blog owner/publishers that we are inviting
to take an early "sneak peek" at lyro. We see your blog as a major
delivery vehicle for news and information and hope you'll have a
willingness to cover our launch (good or bad).
Today, most of us use email and the internet to connect with others and
maintain effective business relationships. While a large amount of
searchable data on people already exists on the internet, this
information is not always well organized, easily locatable, user
friendly, or under individual control in terms of what's displayed and
how. It remains difficult to get your hands on the necessary business
contact information you need to grow your business, or to help you get
more leads and close more deals.
Lyro makes it faster and easier for potential customers, business
partners, colleagues and acquaintances to search, find, and safely &
securely contact each other. Unlike other existing contact management
and networking sites, Lyro allows basic business contact information -
name, company, job title, address, phone number, and business URL (but
not email addresses) - to be freely searched and exchanged over the Web.
It also empowers people to control how that data is displayed. LyroMail
(our anonymous messaging system) allows users direct contact with each
other without disclosing email addresses. "We believe it is the right of
individuals to have a say in protecting their privacy while also being
able to enjoy the fruits of freely promoting themselves and their
business," said Audie Dunham, leader of the lyro team.
Lyro is quickly gaining momentum in business circles. "With Lyro, I can
get basic information about me out on the Web faster and easier than
ever before. People can find me and make direct contact with me without
the hassle of going through layers of their network or relying on
information from second and third hand sources. Yet, my email address
can remain as secure as I choose to make it." said lyro user Chris Toal,
Senior Vice President of Marketing at Amplifon USA / Miracle-EarĀ®.
"We aspire to become the world's largest repository of digital business
cards - where everybody who's anybody can be found if they so choose,"
said Dunham. Lyro is intended to help business people to more
effectively brand themselves on the web.
###
About lyro
Lyro provides the world's first open, fully searchable online business
card. Lyro's mission is to collect, organize, and facilitate the use of
a digital business profile for everyone who has need for a business
card, and make this information freely searchable and accessible across
the Internet.
click to demo <http://www.lyro.com/>
Thanks so much for helping us launch this important new web-based
business tool. Go to http://www.lyro.com for info.
If you no longer wish to receive these emails, please reply to this
message with "No More Email" in the subject line.
Workface LLC
1500 Jackson ST NE
Suite 294
Minneapolis, MN 55413
USA
--- End Message ---
--- Begin Message ---
----- Original Message -----
From: gunawan
To: [EMAIL PROTECTED]
Sent: Thursday, April 12, 2007 8:17 AM
Subject: change ? into 'slash'
if the title is not right.. plz reply to me with the right title.
i see on mambo site where the site manage to change ? into /
how to make that? are from the skrip or from the configuration?
thx 4 reading.
fyi.. i'm indonesian
--- End Message ---
--- Begin Message ---
Please tell me how I call one PHP script from another?
On successful completion of script A I need to call script B without
including it as part of script A.
--
Regards,
Alf Stockton www.stockton.co.za
Be cheerful while you are alive.
-- Phathotep, 24th Century B.C.
My email disclaimer is available at www.stockton.co.za/disclaimer.html
--- End Message ---
--- Begin Message ---
Not sure if i understand properly... you don't want to use the include
() function or you don't want to have the code of script B in script A?
If it is the later you can use include("path/to/scriptB.php"); or
require("path/to/scriptB.php");
you can also use include_once() and require_once() if you want to
make sure that script B is not used more than once.
If you don't want to use the include() or require() functions then I
am not really sure.
I guess (providing you havn't already output headers) you could use
header() to direct the browser... or if headers have already been
sent you could use javascript to do a redirect?!
On 12/04/2007, at 3:18 PM, Alf Stockton wrote:
Please tell me how I call one PHP script from another?
On successful completion of script A I need to call script B
without including it as part of script A.
--
Regards,
Alf Stockton www.stockton.co.za
Be cheerful while you are alive.
-- Phathotep, 24th Century B.C.
My email disclaimer is available at www.stockton.co.za/disclaimer.html
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Regards,
Hartleigh.
--- End Message ---
--- Begin Message ---
1- I have 50 php pages.
2- I want to include all 50 php pages in my main page.
include("1.php"); ...... include("50.php");
My question is:
can I put all of the include php pages in one php page and save it as
includepages.php then include this php page to my main page
include("includepages.php"); instead of listing all of the 50 pages
include("1.php"); ...... include("50.php"); in my main page.
Hartleigh Burton <[EMAIL PROTECTED]> wrote:
Not sure if i understand properly... you don't want to use the include
() function or you don't want to have the code of script B in script A?
If it is the later you can use include("path/to/scriptB.php"); or
require("path/to/scriptB.php");
you can also use include_once() and require_once() if you want to
make sure that script B is not used more than once.
If you don't want to use the include() or require() functions then I
am not really sure.
I guess (providing you havn't already output headers) you could use
header() to direct the browser... or if headers have already been
sent you could use javascript to do a redirect?!
On 12/04/2007, at 3:18 PM, Alf Stockton wrote:
> Please tell me how I call one PHP script from another?
> On successful completion of script A I need to call script B
> without including it as part of script A.
>
> --
> Regards,
> Alf Stockton www.stockton.co.za
>
> Be cheerful while you are alive.
> -- Phathotep, 24th Century B.C.
> My email disclaimer is available at www.stockton.co.za/disclaimer.html
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
Regards,
Hartleigh.
---------------------------------
Don't get soaked. Take a quick peak at the forecast
with theYahoo! Search weather shortcut.
--- End Message ---
--- Begin Message ---
Yes, what you have described should work fine......
sam rumaizan wrote:
1- I have 50 php pages.
2- I want to include all 50 php pages in my main page.
include("1.php"); ...... include("50.php");
My question is:
can I put all of the include php pages in one php page and save it as includepages.php then include this php page to my main page include("includepages.php"); instead of listing all of the 50 pages include("1.php"); ...... include("50.php"); in my main page.
Hartleigh Burton <[EMAIL PROTECTED]> wrote:
Not sure if i understand properly... you don't want to use the include
() function or you don't want to have the code of script B in script A?
If it is the later you can use include("path/to/scriptB.php"); or
require("path/to/scriptB.php");
you can also use include_once() and require_once() if you want to
make sure that script B is not used more than once.
If you don't want to use the include() or require() functions then I
am not really sure.
I guess (providing you havn't already output headers) you could use
header() to direct the browser... or if headers have already been
sent you could use javascript to do a redirect?!
On 12/04/2007, at 3:18 PM, Alf Stockton wrote:
Please tell me how I call one PHP script from another?
On successful completion of script A I need to call script B
without including it as part of script A.
--
Regards,
Alf Stockton www.stockton.co.za
Be cheerful while you are alive.
-- Phathotep, 24th Century B.C.
My email disclaimer is available at www.stockton.co.za/disclaimer.html
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Regards,
Hartleigh.
---------------------------------
Don't get soaked. Take a quick peak at the forecast
with theYahoo! Search weather shortcut.
--
1^st Floor, 184 -186 Glenferrie Road, Malvern VIC 3144
PH: *(03) 9500 1466*
FX : *(03) 9500 1469*
Email: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
Web: www.styleman.com.au <http://www.styleman.com.au>
The information in this e-mail is confidential and is intended solely
for the addressee. Any views or opinions presented are solely those of
the author and do not necessarily represent those of Option Systems Pty
Ltd. If you are not the intended recipient, please delete this message
and contact the sender.
--- End Message ---