473,480 Members | 1,872 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

PHP<->Google?

I'm so curious to know whether Google uses PHP or not. Some pages on
the net says that Google uses PHP. Is it true? If so, what database
they use?

Also heard that Yahoo is moving from yScript to PHP. Any idea about
their database?

If anybody knows the info, please share...

---
"I have a dream that one day girls will be measured by the size of
their brains than the shape of their flush"
Email: rrjanbiah-at-Y!com
Jul 16 '05 #1
7 3094
On Tue, 08 Jul 2003 06:08:33 -0700, R. Rajesh Jeba Anbiah wrote:
I'm so curious to know whether Google uses PHP or not. Some pages on the
net says that Google uses PHP. Is it true? If so, what database they use?

Also heard that Yahoo is moving from yScript to PHP. Any idea about
their database?

If anybody knows the info, please share...

---
"I have a dream that one day girls will be measured by the size of their
brains than the shape of their flush" Email: rrjanbiah-at-Y!com


Don't know about google, but here is more info on Yahoo:
http://news.com.com/2100-1023-963937.html?tag=lh

--
Jeffrey D. Silverman | jeffrey AT jhu DOT edu
Johns Hopkins University | Baltimore, MD
Website | http://www.wse.jhu.edu/newtnotes/

Jul 16 '05 #2
ng**********@rediffmail.com (R. Rajesh Jeba Anbiah) wrote
in message news:<ab**************************@posting.google. com>...

I'm so curious to know whether Google uses PHP or not.
Not in a way you'd notice. The only references to PHP you can
find on their corporate site are in job ads requiring "complex
coding experience in Perl, PHP, Python, or JavaScript" or
somesuch. All senior positions require C/C++ and an advanced
degree in CompSci. So my guess would be, PHP is used, but in
support applications only.
Also heard that Yahoo is moving from yScript to PHP. Any idea
about their database?


Michael Radwin of Yahoo! just gave a talk at OSCON 2003 titled
"One Year of PHP at Yahoo!":

http://public.yahoo.com/~radwin/talks/

Also, Yahoo! provides PHP/MySQL for their Web hosting clients.
Their implementation of PHP is kind of funny though. It's a
CGI (not Apache module) install; allow_url_fopen is off, and
cURL is disabled. According to Radwin, cURL is allowed for
Yahoo!'s own apps, though...

Cheers,
NC
Jul 16 '05 #3
"Jeffrey Silverman" <je*****@jhu.edu> wrote in message news:<pa***************************@jhu.edu>...
On Tue, 08 Jul 2003 06:08:33 -0700, R. Rajesh Jeba Anbiah wrote:
I'm so curious to know whether Google uses PHP or not. Some pages on the
net says that Google uses PHP. Is it true? If so, what database they use?

Also heard that Yahoo is moving from yScript to PHP. Any idea about
their database?

If anybody knows the info, please share...

Don't know about google, but here is more info on Yahoo:
http://news.com.com/2100-1023-963937.html?tag=lh


Yeah. Already seen this page. But, I would like to know Yahoo's
database.

This link ( http://groups.google.com/groups?hl=e...3Dphp%2Bgoogle
) says that Goolge uses PHP. But, no info about the database.

---
"Success = 10% sweat + 90% tears"
Email: rrjanbiah-at-Y!com
Jul 16 '05 #4
Message-ID: <32**************************@posting.google.com > from Nikolai
Chuvakhin contained the following:
I'm so curious to know whether Google uses PHP or not.


Not in a way you'd notice.


Sure I've read somewhere that Google use Python...?

--
Geoff Berrow
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
Jul 16 '05 #5
Geoff Berrow <$b**@ckdog.co.uk> wrote in message news:<83********************************@4ax.com>. ..
Message-ID: <32**************************@posting.google.com > from Nikolai
Chuvakhin contained the following:
I'm so curious to know whether Google uses PHP or not.


Not in a way you'd notice.


Sure I've read somewhere that Google use Python...?


At least the first versions of there spider were written in Python.
You can find this comment if you use the google toolbar and look at
the page rank of the www.python.org site.

Don't know if they still use it today.
Jul 16 '05 #6
<Off Topic>

I'm using Google (groups.google.com) to read & post. I couldn't
view the article posted by Nikolai Chuvakhin at this page
http://groups.google.com/groups?hl=e...%26scoring%3Dd

Anybody knows the reason?

Thanks,
R. Rajesh Jeba Anbiah

</Off Topic>

Geoff Berrow <$b**@ckdog.co.uk> wrote in message news:<83********************************@4ax.com>. ..
Message-ID: <32**************************@posting.google.com > from Nikolai
Chuvakhin contained the following:
I'm so curious to know whether Google uses PHP or not.


Not in a way you'd notice.


Sure I've read somewhere that Google use Python...?

Jul 16 '05 #7
ng**********@rediffmail.com (R. Rajesh Jeba Anbiah) wrote
in message news:<ab**************************@posting.google. com>...

I'm using Google (groups.google.com) to read & post. I couldn't
view the article posted by Nikolai Chuvakhin at this page .... Anybody knows the reason?


Nope. And the funniest part is, I posted it via Google Groups, too...

Cheers,
NC
Jul 16 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
4026
by: lawrence | last post by:
I haven't been able to reach www.php.net for days. Most of the rest of the web is working for me, though I've bad trouble reaching any English sites. Anyone else having trouble?
6
2113
by: lawrence | last post by:
Most of our designers prefer to work in Dreamweaver. They now, this month, want to produce templates that are valid XHTML 1.0. In Dreamweaver, this is as simple as clicking a button. Up till...
20
4613
by: wing | last post by:
Hi, I'm now doing web programming using PHP. I need to use <?php instead of <? for PHP scripts. How do I configure PHP so that it can recognize <? as well?? Thanks in advance Wing
2
1985
by: Brian | last post by:
I am trying to work through a PHP book that I bought a year or so ago, "Essential PHP" by Christopher Cosentino. In the beginning of the book, after the Hello, World .php file, you get to a...
6
1505
by: ubccis | last post by:
What are the differences between using these? <?= and <?php and <?
4
1528
by: news | last post by:
Saw an example of code recently that used this: echo <<<HTML $error $x INVALID DOMAINS<DIV align="center">$display</DIV> HTML; I would have done it like: echo $error.$x."INVALID...
11
9199
by: DrUg13 | last post by:
In java, this seems so easy. You need a new object Object test = new Object() gives me exactly what I want. could someone please help me understand the different ways to do the same thing in...
3
1794
by: comp.lang.php | last post by:
re: http://www.google.com/search?hl=en&q=swedish+flag&btnG=Google+Search I am trying only this: $image = @imagecreatefromgif('/path/to/this/image.gif'); This line alone causes a...
6
1532
by: damod.php | last post by:
<?php ...<? both are the php tags whats the diff b/w name of the tag??? then i write the code using <? this tag full coding , but the server can not accept my (<?)tag,, its only used <? php tag...
8
1231
by: mab464 | last post by:
I was taking an online PHP test and got the question What will the output of the following statement be echo 4<<5; After the test, I searched google but couldn't find any such...
0
7041
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6908
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7043
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7081
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
4776
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4481
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
2984
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1300
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
563
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.