Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

bang-phpug · Bangalore PHP User Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1019
  • Category: PHP
  • Founded: May 29, 2006
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 1255 - 1284 of 1869   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#1255 From: "pattabhi_joshi" <pattabhi_joshi@...>
Date: Thu Dec 11, 2008 9:16 am
Subject: Rewriting url
pattabhi_joshi
Send Email Send Email
 
Plz let me know the detail infromation about url rewriting

#1256 From: "Harsha M V" <hmvrulz@...>
Date: Thu Dec 11, 2008 3:32 pm
Subject: Re: Rewriting url
hmvgprs
Send Email Send Email
 
http://hmvrulz.wordpress.com/tag/url/


[Non-text portions of this message have been removed]

#1257 From: Ramkumar <mailtoramkumar@...>
Date: Fri Dec 12, 2008 8:05 am
Subject: Re: Rewriting url
rmkmr79
Send Email Send Email
 
Fake, friendly URL internally points to a real URL. This is a web server
technique, primarily on Apache. Nowadays IIS rewrite modules are also
available.

Read more here
http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html

- Ram

pattabhi_joshi wrote:

> Plz let me know the detail infromation about url rewriting
>
>

#1258 From: "pattabhi_joshi" <pattabhi_joshi@...>
Date: Fri Dec 12, 2008 3:14 am
Subject: Re: Rewriting url
pattabhi_joshi
Send Email Send Email
 
hi all,

thank u for your reply



--- In bang-phpug@yahoogroups.com, Ramkumar <mailtoramkumar@...> wrote:
>
> Fake, friendly URL internally points to a real URL. This is a web
server
> technique, primarily on Apache. Nowadays IIS rewrite modules are also
> available.
>
> Read more here
> http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html
>
> - Ram
>
> pattabhi_joshi wrote:
>
> > Plz let me know the detail infromation about url rewriting
> >
> >
>

#1259 From: "Amit Rana" <amitrana77@...>
Date: Mon Dec 22, 2008 12:39 pm
Subject: Job:: PHP developers / architects / programmers needed in bangalore
amitrana77
Send Email Send Email
 
Hi,

  We have multiple requirement for php programmers. All our work is
done in symfony framework. Freshers are also welcome to apply given
they have some prior web development experience.

  We has have opening for iphone / android development (doesnt fit in
this list) but just in case your friends are interested.

Regards,
Amit.
jobs@...

#1260 From: "Kesava Reddy.M" <reddy.kesava.m@...>
Date: Sat Dec 27, 2008 10:42 am
Subject: Excel Import Help Rqd!
mkreddy_in
Send Email Send Email
 
Dear All,

Greetings!

We have requirement to import the excel file data to MySql.
Can you help us with this?
NOTE: We don't want to import csv file.

Thanks in advance..

--Kesh

#1261 From: ankur <ganu.ullu@...>
Date: Sun Dec 28, 2008 2:48 am
Subject: Re: Excel Import Help Rqd!
dave.ankur
Send Email Send Email
 
Hey,

you can use http://sourceforge.net/projects/phpexcelreader ( but this is
stopped for new version )
the updated version is - http://code.google.com/p/php-excel-reader/ ( this
use this sourceforge concept and made the update version. )

Use the second link..
I am using the same link for importing my xl file to mysql DB.

You will get all the value in an array.
Play will for/foreach loop, create your insert/update query and put the data
to DB.

buzz me if any issue further.

--
Vande Matram...
Ankur

On Sat, Dec 27, 2008 at 4:12 PM, Kesava Reddy.M <reddy.kesava.m@...>wrote:

>   Dear All,
>
> Greetings!
>
> We have requirement to import the excel file data to MySql.
> Can you help us with this?
> NOTE: We don't want to import csv file.
>
> Thanks in advance..
>
> --Kesh
>
>
>


[Non-text portions of this message have been removed]

#1262 From: "thisistrinath" <thisistrinath@...>
Date: Sun Dec 28, 2008 6:38 am
Subject: PHP While Loop Question, please answer
thisistrinath
Send Email Send Email
 
Hello,
      It seems odd to ask a question on while loop but the problem
itself is equally odd.
      $a="<html><head></head><body><a href=";//a string
      $l=strlen($a);
      $i=0;
      while($a[$i]!="<" && $a[$i+1]!="a" && $i<$l){$i++;}
      echo $i;
A simple thing as this should give me the output 25, whereas it is
giving me 9. Please tell me where is the problem or is that the PHP
while loop cannot check more than two conditions at a time(as here are 3).
Thank you
-Trinadh

#1263 From: "Harsha M V" <hmvrulz@...>
Date: Wed Dec 24, 2008 1:41 am
Subject: Re: Job:: PHP developers / architects / programmers needed in bangalore
hmvgprs
Send Email Send Email
 
Is this full time job ? because am a student an am in last year. I wil be
free from Jan. I would like to get involved in live projects. Is there any
place for me ?
I am not any expert but have prior experience.

REgards Harsha


[Non-text portions of this message have been removed]

#1264 From: "Udayakumar Sarangapani" <udayakumar.sarangapani@...>
Date: Mon Dec 29, 2008 7:33 am
Subject: Re: PHP While Loop Question, please answer
udayakumar.sarangapani@...
Send Email Send Email
 
Hi Srikanth,

When i debugged and ran your code, i got 0 as the output. I don't know the
reason.

why don't you change the logic as follows?

<?php
$a="<html><head></head><body><a href=";//a string
$l=strlen($a);
$j = -1;

for($i=0; $i < $l; $i++) {
     if ($a[$i] == "<" && $a[$i+1] == "a") {
         $j = $i;
     }
}

if ($j != -1) {
     echo $j;
}
?>



On Sun, Dec 28, 2008 at 12:08 PM, thisistrinath
<thisistrinath@...>wrote:

>   Hello,
> It seems odd to ask a question on while loop but the problem
> itself is equally odd.
> $a="<html><head></head><body><a href=";//a string
> $l=strlen($a);
> $i=0;
> while($a[$i]!="<" && $a[$i+1]!="a" && $i<$l){$i++;}
> echo $i;
> A simple thing as this should give me the output 25, whereas it is
> giving me 9. Please tell me where is the problem or is that the PHP
> while loop cannot check more than two conditions at a time(as here are 3).
> Thank you
> -Trinadh
>
>
>


[Non-text portions of this message have been removed]

#1265 From: janakiraman <jhon_311983@...>
Date: Mon Dec 29, 2008 12:20 pm
Subject: Re: PHP While Loop Question, please answer
jhon_311983
Send Email Send Email
 
Hi  thisistrinath,

Their is a error in while loop. Please check it out. It will be executed only
once.  The reason

while($a[$i] !="<" && $a[$i+1]!="a" && $i<$l){$i++; }

$a[0] = "<"  and you are checking for != "<". This will become false and it
will not go into loop itself.

Thanks

B. Janakiraman

--- On Mon, 29/12/08, Udayakumar Sarangapani <udayakumar.sarangapani@...>
wrote:
From: Udayakumar Sarangapani <udayakumar.sarangapani@...>
Subject: Re: [bang-phpug] PHP While Loop Question, please answer
To: bang-phpug@yahoogroups.com
Date: Monday, 29 December, 2008, 1:03 PM











             Hi Srikanth,



When i debugged and ran your code, i got 0 as the output. I don't know the

reason.



why don't you change the logic as follows?



<?php

$a="<html><head> </head><body> <a href=";//a string

$l=strlen($a) ;

$j = -1;



for($i=0; $i < $l; $i++) {

     if ($a[$i] == "<" && $a[$i+1] == "a") {

         $j = $i;

     }

}



if ($j != -1) {

     echo $j;

}

?>



On Sun, Dec 28, 2008 at 12:08 PM, thisistrinath

<thisistrinath@ yahoo.co. in>wrote:



>   Hello,

> It seems odd to ask a question on while loop but the problem

> itself is equally odd.

> $a="<html><head> </head><body> <a href=";//a string

> $l=strlen($a) ;

> $i=0;

> while($a[$i] !="<" && $a[$i+1]!="a" && $i<$l){$i++; }

> echo $i;

> A simple thing as this should give me the output 25, whereas it is

> giving me 9. Please tell me where is the problem or is that the PHP

> while loop cannot check more than two conditions at a time(as here are 3)..

> Thank you

> -Trinadh

>

>

>



[Non-text portions of this message have been removed]



























       Add more friends to your messenger and enjoy! Go to
http://messenger.yahoo.com/invite/

[Non-text portions of this message have been removed]

#1266 From: Lokesh M <lokesh16@...>
Date: Mon Dec 29, 2008 6:01 am
Subject: RE: PHP While Loop Question, please answer
lokeshm5
Send Email Send Email
 
There is nothing odd, Just notice where the first "a" is then everything becomes
clear and logical.

As per the condition used it fails for $a[$i+1]!="a" at "<html><hea"
which is obviously the 10th char
The condition is true only for first 9 characters











_________________________________________________________________
For the freshest Indian Jobs Visit MSN Jobs
http://www.in.msn.com/jobs

[Non-text portions of this message have been removed]

#1267 From: Koushik G raj <koushikgraj@...>
Date: Mon Dec 29, 2008 4:56 am
Subject: Re: PHP While Loop Question, please answer
koushikgraj
Send Email Send Email
 
Hi Trinadh,

try this.
while(($a[$i] !="<" || $a[$i+1]!="a") && $i<$l)

--- On Sun, 28/12/08, thisistrinath <thisistrinath@...> wrote:
From: thisistrinath <thisistrinath@...>
Subject: [bang-phpug] PHP While Loop Question, please answer
To: bang-phpug@yahoogroups.com
Date: Sunday, 28 December, 2008, 12:08 PM











             Hello,

      It seems odd to ask a question on while loop but the problem

itself is equally odd.

      $a="<html><head> </head><body> <a href=";//a string

      $l=strlen($a) ;

      $i=0;

      while($a[$i] !="<" && $a[$i+1]!="a" && $i<$l){$i++; }

      echo $i;

A simple thing as this should give me the output 25, whereas it is

giving me 9. Please tell me where is the problem or is that the PHP

while loop cannot check more than two conditions at a time(as here are 3).

Thank you

-Trinadh



























       Add more friends to your messenger and enjoy! Go to
http://messenger.yahoo.com/invite/

[Non-text portions of this message have been removed]

#1268 From: "thisistrinath" <thisistrinath@...>
Date: Tue Dec 30, 2008 9:18 pm
Subject: Re: PHP While Loop Question, please answer
thisistrinath
Send Email Send Email
 
Hello friends, Thank you for replying me, I was trying to build a URL
extractor. But since I couldn't get the while loop right I moved to
for and if loop system. I will finish the code and show to you people
so you can run and see.
Thank you
Trinadh Yerra

#1269 From: "aruncbhas" <aruncbhas@...>
Date: Mon Jan 5, 2009 1:46 am
Subject: How to find aol ip address
aruncbhas
Send Email Send Email
 
Is there any way to find aol ip address with PHP.

Is this works?

<?php
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
if (preg_match ("/aol/i", $hostname))
{
$isp = "aol";
}
else
{
$isp = "other";
  }
?>

#1270 From: janakiraman <jhon_311983@...>
Date: Mon Dec 29, 2008 12:39 pm
Subject: Re: PHP While Loop Question, please answer
jhon_311983
Send Email Send Email
 
Hi thisistrinath,
Otherwise use like this and check it out..
<?php

$a="<html><head></head><body><a href=";//a string
$l=strlen($a) ;
$i=0;
while($i<$l){
if($a[$i] =="<" && $a[$i+1]=="a" && $i<$l)
break;
$i++;
}
echo $i;
?>

Thanks

B. Janakiraman

--- On Mon, 29/12/08, Udayakumar Sarangapani <udayakumar.sarangapani@...>
wrote:
From: Udayakumar Sarangapani <udayakumar.sarangapani@...>
Subject: Re: [bang-phpug] PHP While Loop Question, please answer
To: bang-phpug@yahoogroups.com
Date: Monday, 29 December, 2008, 1:03 PM











             Hi Srikanth,



When i debugged and ran your code, i got 0 as the output. I don't know the

reason.



why don't you change the logic as follows?



<?php

$a="<html><head> </head><body> <a href=";//a string

$l=strlen($a) ;

$j = -1;



for($i=0; $i < $l; $i++) {

     if ($a[$i] == "<" && $a[$i+1] == "a") {

         $j = $i;

     }

}



if ($j != -1) {

     echo $j;

}

?>



On Sun, Dec 28, 2008 at 12:08 PM, thisistrinath

<thisistrinath@ yahoo.co. in>wrote:



>   Hello,

> It seems odd to ask a question on while loop but the problem

> itself is equally odd.

> $a="<html><head> </head><body> <a href=";//a string

> $l=strlen($a) ;

> $i=0;

> while($a[$i] !="<" && $a[$i+1]!="a" && $i<$l){$i++; }

> echo $i;

> A simple thing as this should give me the output 25, whereas it is

> giving me 9. Please tell me where is the problem or is that the PHP

> while loop cannot check more than two conditions at a time(as here are 3)..

> Thank you

> -Trinadh

>

>

>



[Non-text portions of this message have been removed]



























       Connect with friends all over the world. Get Yahoo! India Messenger at
http://in.messenger.yahoo.com/?wm=n/

[Non-text portions of this message have been removed]

#1271 From: "Vinu Thomas" <vinuthomas@...>
Date: Mon Jan 5, 2009 8:34 am
Subject: Re: How to find aol ip address
uglyftp
Send Email Send Email
 
Yes, your code should detect AOL IP's properly. AOL anyways publishes
their IP blocks. You can find the entire range of AOL ip Addresses at:
http://webmaster.info.aol.com/proxyinfo.html

You can test your code against those IP addresses as well to see if they work :)

Regards,
Vinu
--------------
Blog: http://blogs.vinuthomas.com
Twitter: http://twitter.com/vinuthomas


On Mon, Jan 5, 2009 at 7:16 AM, aruncbhas <aruncbhas@...> wrote:
>
> Is there any way to find aol ip address with PHP.
>
> Is this works?
>
> <?php
> $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
> if (preg_match ("/aol/i", $hostname))
> {
> $isp = "aol";
> }
> else
> {
> $isp = "other";
> }
> ?>
>

#1272 From: "isoftsolutions" <isoftsolutions@...>
Date: Mon Jan 5, 2009 11:32 am
Subject: Excellent opening for PHP MYSQL Programmer
isoftsolutions
Send Email Send Email
 
We have an Excellent opening for PHP MYSQL Programmer

No of Openings:- 2
Location: Navi Mumbai, Vashi.

The candidate will be able to:
Develop web applications using PHP/MySQL.
Understand, Analyses & Modify Existing PHP Scripts and Modules.
Have good knowledge of AJAX
Conversant with Linux, Apache, MySQL & PHP programming (LAMP).
Design & Maintain My SQL Databases & Tables.
Develop and Maintain New Websites
Smarty Templates Integration and URL Re-writing
Experience in Joomla, OS Commerce will be added advantage
Project Flow chart and Proto Typing

Personal skills required:
Excellent communication skills.(English) (Hind will be added
advantage)
Self motivated, Honest, Proactive and Enthusiastic.
Passionate about Websites and SEO
A keen learner who is interested in continual self-education
Excellent Team Player.
Excellent logical and analytical skills.


If you are interested please send your CV with current salary
and expected CTC ASAP. Also please refer your freinds who may
also interested for the same opening. Please send you CV's to
rakesh[AT]isoftsolutions.co.in or support[AT]isoftsolutions.co.in


Best Regards,
Rakesh Sonawane.
http://www.isoftsolutions.co.in

#1273 From: "aruncbhas" <aruncbhas@...>
Date: Mon Jan 5, 2009 1:07 pm
Subject: Re: How to find aol ip address
aruncbhas
Send Email Send Email
 
Thanks vinu for the ips, code working when i used the aol client ips,
but its not working with AOL Proxy IP.  Can you guide me how to block
all proxies?

syam







--- In bang-phpug@yahoogroups.com, "Vinu Thomas" <vinuthomas@...> wrote:
>
> Yes, your code should detect AOL IP's properly. AOL anyways publishes
> their IP blocks. You can find the entire range of AOL ip Addresses at:
> http://webmaster.info.aol.com/proxyinfo.html
>
> You can test your code against those IP addresses as well to see if
they work :)
>
> Regards,
> Vinu
> --------------
> Blog: http://blogs.vinuthomas.com
> Twitter: http://twitter.com/vinuthomas
>
>
> On Mon, Jan 5, 2009 at 7:16 AM, aruncbhas <aruncbhas@...> wrote:
> >
> > Is there any way to find aol ip address with PHP.
> >
> > Is this works?
> >
> > <?php
> > $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
> > if (preg_match ("/aol/i", $hostname))
> > {
> > $isp = "aol";
> > }
> > else
> > {
> > $isp = "other";
> > }
> > ?>
> >
>

#1274 From: "Vinu Thomas" <vinuthomas@...>
Date: Tue Jan 6, 2009 7:49 am
Subject: Re: Re: How to find aol ip address
uglyftp
Send Email Send Email
 
Hi Syam,

Unfortunately AOL's proxy addresses don't come up with a reverse
lookup so it's not possible to detect that with the code you have.
Check the following link :
http://www.jroller.com/agileanswers/entry/joomla_1_0_x_patch

The author of that article has a function called isAOLuser() which you
can use along with the array $aolSubnetList in which he puts in all
the addresses which are present in the AOL webmaster link.
Just that array and the function should be able to solve your problem.

Regards,
Vinu

--------------
Blog: http://blogs.vinuthomas.com
Twitter: http://twitter.com/vinuthomas



On Mon, Jan 5, 2009 at 6:37 PM, aruncbhas <aruncbhas@...> wrote:
> Thanks vinu for the ips, code working when i used the aol client ips,
> but its not working with AOL Proxy IP. Can you guide me how to block
> all proxies?
>
> syam
>
> --- In bang-phpug@yahoogroups.com, "Vinu Thomas" <vinuthomas@...> wrote:
>>
>> Yes, your code should detect AOL IP's properly. AOL anyways publishes
>> their IP blocks. You can find the entire range of AOL ip Addresses at:
>> http://webmaster.info.aol.com/proxyinfo.html
>>
>> You can test your code against those IP addresses as well to see if
> they work :)
>>
>> Regards,
>> Vinu
>> --------------
>> Blog: http://blogs.vinuthomas.com
>> Twitter: http://twitter.com/vinuthomas
>>
>>
>> On Mon, Jan 5, 2009 at 7:16 AM, aruncbhas <aruncbhas@...> wrote:
>> >
>> > Is there any way to find aol ip address with PHP.
>> >
>> > Is this works?
>> >
>> > <?php
>> > $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
>> > if (preg_match ("/aol/i", $hostname))
>> > {
>> > $isp = "aol";
>> > }
>> > else
>> > {
>> > $isp = "other";
>> > }
>> > ?>
>> >
>>
>
>

#1275 From: "hmvgprs" <hmvrulz@...>
Date: Thu Jan 8, 2009 4:10 pm
Subject: Re: any php learning centers in bangalore
hmvgprs
Send Email Send Email
 
not sure. i sugegst u grab SAMS teach ur self PHP MYSQL APACHE to get
a kick start then u have the internet. after u learn basics i suggest

phpvideotutorials.com to learn building php applications

#1276 From: "hmvgprs" <hmvrulz@...>
Date: Thu Jan 8, 2009 4:07 pm
Subject: get area names on providing zipcode
hmvgprs
Send Email Send Email
 
i was using facebook and came across this application called Zoosk.

here when u provide your zip code it shows all the are coming under
the zip code for bangalore.

Is there any place we can get that database with entries of zip code
versus area names ?

are any way to fetch it from this site ?

#1277 From: "hmvgprs" <hmvrulz@...>
Date: Sat Jan 10, 2009 4:58 pm
Subject: Re: get area names on providing zipcode
hmvgprs
Send Email Send Email
 
I am creating an application which requires Pin code to area relation
in bangalore.
If your Staying in Banaglore or stayed in Banaglore Please reply back
with your pincode and area name as follows

560003 - Malleswaram

Sorry for the trouble. Thanx for your Time

Regards
Harsha M V

#1278 From: "Vinu Thomas" <vinuthomas@...>
Date: Sat Jan 10, 2009 5:30 pm
Subject: Re: get area names on providing zipcode
uglyftp
Send Email Send Email
 
Just came across this site:
http://www.indiapost.gov.in/pin/pinsearch.aspx
Click on the District tab, select Bangalore and click on search.

Regards,
Vinu

--- In bang-phpug@yahoogroups.com, "hmvgprs" <hmvrulz@...> wrote:
>
> I am creating an application which requires Pin code to area relation
> in bangalore.
> If your Staying in Banaglore or stayed in Banaglore Please reply back
> with your pincode and area name as follows
>
> 560003 - Malleswaram
>
> Sorry for the trouble. Thanx for your Time
>
> Regards
> Harsha M V
>

#1279 From: "thisistrinath" <thisistrinath@...>
Date: Sun Jan 11, 2009 5:32 am
Subject: PHP Streams help- Links extractor from Web Pages
thisistrinath
Send Email Send Email
 
Hello Friends,
      I have made a URL extractor to get all the links in a page. Its
good enough now, but to increase the speed I need two more things
first is to use CURL or sockets and second is to process the data as
soon as we get using PHP streams(which can reduce the total time by
50%), but I am weak in that and need your help.
      The script I made is at
http://yerra.trinadh.googlepages.com/Linkfinder1.html
Please use it(just change the File_Get_Contents function inputs on
top) to see if it meets any of your needs, but I have not made it as a
class because it is still a bit incomplete. Current features are that it
finds links in A and  FRAME tags, set 200 char limit on URL's, rejects
URL's with a single char or no description, rejects image links,
rejects links to files which are not not web pages(like PDF, wmv). And
best of all it is very lineant as a browser in finding links. But one
important things that is left to do is to convert relative links into
absolute links, which I will do soon.
      In the Meantime, please test and tell me how is it? and also
please help PHP Stream Filter
Thank you
-Trinadh

#1280 From: "Harsha M V" <hmvrulz@...>
Date: Sun Jan 11, 2009 6:28 am
Subject: Re: Re: get area names on providing zipcode
hmvgprs
Send Email Send Email
 
Tahnx Vinu,

I got 500 entries. I will share it with you guys when i came a proper
database out of it.

Regrads,
Harsha M V

On Sat, Jan 10, 2009 at 11:00 PM, Vinu Thomas <vinuthomas@...> wrote:

>   Just came across this site:
> http://www.indiapost.gov.in/pin/pinsearch.aspx
> Click on the District tab, select Bangalore and click on search.
>
> Regards,
> Vinu
>
>
> --- In bang-phpug@yahoogroups.com <bang-phpug%40yahoogroups.com>,
> "hmvgprs" <hmvrulz@...> wrote:
> >
> > I am creating an application which requires Pin code to area relation
> > in bangalore.
> > If your Staying in Banaglore or stayed in Banaglore Please reply back
> > with your pincode and area name as follows
> >
> > 560003 - Malleswaram
> >
> > Sorry for the trouble. Thanx for your Time
> >
> > Regards
> > Harsha M V
> >
>
>
>



--
Harsha M V


[Non-text portions of this message have been removed]

#1281 From: "rajanp76@..." <rajanp76@...>
Date: Fri Jan 16, 2009 5:32 am
Subject: WANTED Expreienced php AJAX Developers in Bangalore
rajanp76...
Send Email Send Email
 
WANTED Experienced php AJAX Developers in Bangalore

Hi

Wanted php professional with 3+ years experience to develop a social
networking site.
should be flexible to work 3 to 4 hrs per day 3 to 4 days a week.If
you have hands on experience in building social networking site please
contact. if you don't have experience please do not contact.Salary 20k
per month
Location Bangalore

#1282 From: "Kesava Reddy.M" <reddy.kesava.m@...>
Date: Fri Jan 16, 2009 6:18 am
Subject: Wanted Freshers with Strong PHP knowledge.
mkreddy_in
Send Email Send Email
 
Dear All,



Greetings!

We are looking for freshers  with strong PHP and MySql knowledge.



With Regards & Thanks

Kesava Reddy.M



[Non-text portions of this message have been removed]

#1283 From: arun senthil <arun_sen2003@...>
Date: Fri Jan 16, 2009 8:04 am
Subject: Re: Wanted Freshers with Strong PHP knowledge.
arun_sen2003
Send Email Send Email
 
Please Send me the work place and details..........

"Kesava Reddy.M" <reddy.kesava.m@...> wrote:                            
Dear All,

  Greetings!

  We are looking for freshers  with strong PHP and MySql knowledge.

  With Regards & Thanks

  Kesava Reddy.M

  [Non-text portions of this message have been removed]






---------------------------------
  Check out the all-new Messenger 9.0!  Click here.

[Non-text portions of this message have been removed]

#1284 From: Hemanth <mvhemanth@...>
Date: Fri Jan 16, 2009 9:09 am
Subject: Re: Re: get area names on providing zipcode
mvhemanth
Send Email Send Email
 
just pick up the telephone directory and find all the pin codes in the
information pages pal
even any yellow pages will contain this information

Hemanth Roy MV
Ph: +91-9241773148
Creator : www.ValueAds.Biz  - 100% FREE Classified site. No Registration
required.
:) Also enjoy my choice jokes at collectorsjokes.blogspot.com

Get Rs.2000 discount on anything u want to buy like TV, fridge, mixie,
mobile etc...
And a business opportunity to earn in Lakhs with just Rs.710 investment
See www.ValueAds.Biz/rainwings


On Sat, Jan 10, 2009 at 10:28 PM, hmvgprs <hmvrulz@...> wrote:

> I am creating an application which requires Pin code to area relation
> in bangalore.
> If your Staying in Banaglore or stayed in Banaglore Please reply back
> with your pincode and area name as follows
>
> 560003 - Malleswaram
>
> Sorry for the trouble. Thanx for your Time
>
> Regards
> Harsha M V
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>


[Non-text portions of this message have been removed]

Messages 1255 - 1284 of 1869   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help