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: 1011
  • 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 1024 - 1054 of 1863   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#1024 From: "Vinu Thomas" <vinuthomas@...>
Date: Tue Apr 1, 2008 7:14 am
Subject: Re: how can i use while loop inside message body in mail() using php?
uglyftp
Send Email Send Email
 
Try this code for your message body instead:
$message = "<html>
<body>
<h3><center>Average Score for $uname On $Date</center></h3>
<table border=1>
<tr>

<th>Days</th>
<th>Average score</th>
</tr>";
while($col=mysql_fetch_array($result2,MYSQL_ASSOC)))
{
         $message .="<tr>
         <td>{$col['day']}</td>
         <td>{$col['score']}</td>
         </tr>";
}
$message .= "</table>
</body>
</html>";


Regards,
Vinu

On Tue, Apr 1, 2008 at 11:22 AM, sheenrose_joseph
<sheenrose_joseph@...> wrote:
>
>
>
>
>
>
> hello,
>  i want to send am email.am attaching my code with this mail.
>
>  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
>  <?php
>  $uname=$_SESSION['UID'];
>  $Date=date("Y-m-d");
>  $month=date("m");
>  $f=0;
>  $link = mysql_connect("localhost","root","kushal")or die();
>  mysql_select_db('mysql') or die();
>  $query = "select
>  SUM(Manjusha),SUM(Sheen),SUM(Partha),DATE_FORMAT(Logindate,'%a') as s1
>  from score group by Logindate having (Logindate = '2008-03-24') ";
>  $result = mysql_query($query) or die ('error');
>  while($row=mysql_fetch_array($result))
>  {
>  switch ($uname)
>  {
>  case 'manjusha' : $s1=$row['SUM(Manjusha)'];
>  break;
>  case 'sheen' : $s1=$row['SUM(Sheen)'];
>  break;
>  case 'suresh' : $s1=$row['SUM(Partha)'];
>  break;
>
>  default:print "no such user";
>  }
>  $day=$row['s1'];
>  $avg=$s1/3;
>
>  }
>
>  echo $avg;
>
>  if($day=='Mon')
>  {
>  $f=0;
>
>  }
>  else
>  {
>  $f=$f+1;
>  }
>  $query1 = "insert into avg values('".$day."','".$avg."','".$f."')";
>  $result1 = mysql_query($query1);
>
>  $query2 = "select day,score from avg where status=1";
>  $result2 = mysql_query($query2);
>
>  $to = 'sheen.rose@...' . ', '; // note the comma
>  $to .= 'manjusha.valsan@...';
>  /*$to = 'manjusha@...';*/
>  $subject = 'Weekly Report';
>  $message = "<html>
>  <body>
>  <h3><center>Average Score for $uname On $Date</center></h3>
>  <table border=1>
>  <tr>
>
>  <th>Days</th>
>  <th>Average score</th>
>  </tr>
>  <?php while($col=mysql_fetch_array($result2,MYSQL_ASSOC)))
>  { ?>
>
>  <tr>
>  <td>{$col['day']}</td>
>  <td>{$col['score']}</td>
>  </tr>
>  <?php } ?>
>
>  </table>
>  </body>
>  </html>";
>
>  $headers = 'From: sheen@...' . "\r\n" .
>  'Reply-To: webmaster@...' . "\r\n" .
>  'X-Mailer: PHP/' . phpversion();
>  /* To send HTML mail, you can set the Content-type header. */
>  $headers .= "MIME-Version: 1.0\r\n";
>  $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
>  if ($f == 0)
>  {
>  mail($to, $subject, $message, $headers);
>  echo "mail delivered";
>  $f=0;
>
>  //$query2="update table avg set status='".$f."'";
>  //$result2 = mysql_query($query2);
>  }
>  ?>
>  <html>
>  <head>
>  <title>Sign Out</title>
>  <style>
>  body {background:#B0C4DE; font-family:Verdana; font-size:12}
>  table {font-family:Verdana; font-size:12}
>  a {text-decoration:none;}
>  a:visited {color:red}
>  a:hover {color:yellow}
>  </style>
>  </head>
>  <body >
>  <?php $uname=$_SESSION['UID']; ?>
>  <table width=750 height=350>
>  <tR>
>  <td>
>  <center>
>  <table><tr><td><img
>
>
src="https://www.google.com/a/cpanel/etchr.com/images/logo.gif?service=mail"></t\
d></tr></table>
>  </center>
>  </tr>
>  </td>
>  <tr>
>  <td>
>  <?
>  $link = mysql_connect("localhost","root","kushal")
>  or die();
>  mysql_select_db('mysql') or die();
>
>  /* Performing SQL query */
>  $query = " update userinfo set online='0' where
>  Email_id='".$uname."'";
>  $result =mysql_query($query);
>  mysql_close($link);
>
>
>
>  exec("sudo rm /upload/$uname/*.* -d -r -f ");
>  unset($_SESSION['UID']);
>  unset($_SESSION['addr']);
>  unset($_SESSION['attachtype']);
>  unset($_SESSION['attachfile']);
>  unset($_SESSION['attachsize']);
>  session_destroy();
>  ?>
>  <center>
>  <table width=650 height=250 >
>  <tr>
>  <td>
>  <center>
>  <font color="#008000" size=5 face="VERDANA, ARIAL" >
>  <b>You've signed out successfully!<br></b>
>  <br><a href="login.html">SignIn</a><b> as different user.<br></font>
>  <i><h5><p><br><br><br><br>
>  Thank you <br>
>  Have a nice day!</i></b></h5>
>  </center>
>  </td>
>  </tr>
>  </table>
>  </center>
>  </td>
>  </tr>
>  </table>
>  </body>
>  </html>
>
>  and the while loop inside the message body doesnt work...can any one
>  help me out??
>
>

#1026 From: "Vinu Thomas" <vinuthomas@...>
Date: Tue Apr 1, 2008 7:30 am
Subject: Re: Drupal customization
uglyftp
Send Email Send Email
 
You can enable comment moderation in Drupal to remove the unwanted
comments. But if you want to hide it from the other users, and show it
only to the poster, you'll have to hack up the comment code to
implement this.

http://drupal.org/node/23703

Regards,
Vinu

--- In bang-phpug@yahoogroups.com, manoj maurya <mkmaurya_it@...> wrote:
>
> Hi friends,
>
> Any one have idea about drupal CMS? Actually i need to
> customize comments on news, articles.
>
> I want to make particular valgur comment as invisible
> from other user, it only show to posted user.
> Thanks in advance.
>
> Bye
>
>             Manoj Kr. Maurya
>   (Software Engineer)
>   Phone: +91-9911827700
>
>
>
>
>
>
>
>
>
>
________________________________________________________________________________\
____
> Never miss a thing.  Make Yahoo your home page.
> http://www.yahoo.com/r/hs
>

#1027 From: "rskumarcb" <rskumarcb@...>
Date: Tue Apr 1, 2008 7:43 am
Subject: using oops concepts
rskumarcb
Send Email Send Email
 
I am experienced user in php4. Now I want explore php5 and oops
concepts. Suggest me how to develop project using php5 with oops

thanking you
rskumarcb

#1028 From: manoj maurya <mkmaurya_it@...>
Date: Tue Apr 1, 2008 5:43 pm
Subject: Re: Re: Drupal customization
mkmaurya_it
Send Email Send Email
 
Thankyou!! vinu i have solved my problem.

Vinu Thomas <vinuthomas@...> wrote:                             You can
enable comment moderation in Drupal to remove the unwanted
  comments. But if you want to hide it from the other users, and show it
  only to the poster, you'll have to hack up the comment code to
  implement this.

  http://drupal.org/node/23703

  Regards,
  Vinu

  --- In bang-phpug@yahoogroups.com, manoj maurya <mkmaurya_it@...> wrote:
  >
  > Hi friends,
  >
  > Any one have idea about drupal CMS? Actually i need to
  > customize comments on news, articles.
  >
  > I want to make particular valgur comment as invisible
  > from other user, it only show to posted user.
  > Thanks in advance.
  >
  > Bye
  >
  >             Manoj Kr. Maurya
  >   (Software Engineer)
  >   Phone: +91-9911827700
  >
  >
  >
  >
  >
  >
  >
  >
  >
  >
  __________________________________________________________
  > Never miss a thing.  Make Yahoo your home page.
  > http://www.yahoo.com/r/hs
  >






             Manoj Kr. Maurya
   (Software Engineer)
   Phone: +91-9911827700








---------------------------------
You rock. That's why Blockbuster's offering you one month of Blockbuster Total
Access, No Cost.

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

#1029 From: ganu <ganu.ullu@...>
Date: Wed Apr 2, 2008 4:21 pm
Subject: Re: Astrology Software/Service
dave.ankur
Send Email Send Email
 
hello,

I know how to analyze and make the horoscope.
I can tell you the logic, I think that that will make seance.

we can discuss off line.
but as the indian tradition what will be the guru dakshina. :)

--

On Mon, Mar 31, 2008 at 6:11 PM, Mahabaleshwar <mahihs2002@...>
wrote:

>   Dear friends
>
> Is there any horoscope web service providers or horoscope software
> that anybody implemented or know the details.Because horoscope
> functionality I have to implement in our website. I donot have any
> idea about that.
>
> My website configuration is
>
> Webaserver : Apache
> Language : PHP
> OS : Fedora 6
>
> Hoping to here from you
>
> regards
> Mahabaleshwar
>
>
>


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

#1030 From: "thisistrinath" <thisistrinath@...>
Date: Thu Apr 3, 2008 9:50 pm
Subject: MySQL License question
thisistrinath
Send Email Send Email
 
Hello, I am creating a website where every user can register for free
and do few things, but I will make money by displaying ads on the
website. So do I have to buy a MySQL commercial license for that?
Also, in case I charge my users for the services I offer, now do I have
to buy a commercial license?
Please answer, I am unable to understand the GPL.

#1031 From: "ram" <mailtoramkumar@...>
Date: Fri Apr 4, 2008 6:18 am
Subject: PHP Zip question - quick responces appreciated
rmkmr79
Send Email Send Email
 
Hi,

My client's server is running on PHP 4.3.9 , I need to zip a file with
password and use FTP to transfer it to another server.

The FTP part is fine at the monet, but I am still struggling with the
zip part. I cannot use exec, system commands because of safe_mode
restriction.
I tried the PHP Zip functions, that also seem to be not working.

Can anybody suggest a PHP zip utility which I can use to zip a file
WITH password?

Thank you,

Ram

#1032 From: Pritesh Loke <priteshloke@...>
Date: Fri Apr 4, 2008 1:03 pm
Subject: watermark on video
priteshloke
Send Email Send Email
 
Hello
            can any body tell how to watermark on video using php code ?
please help me.......

Thank you in advance




PML

---------------------------------
You rock. That's why Blockbuster's offering you one month of Blockbuster Total
Access, No Cost.

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

#1033 From: "Vinu Thomas" <vinuthomas@...>
Date: Mon Apr 7, 2008 4:49 am
Subject: Re: Help For PHP basics
uglyftp
Send Email Send Email
 
Here's an article with a lot of other links ot useful reading material
on PHP: http://www.ibm.com/developerworks/opensource/library/os-php-read/

Regards,
Vinu
--- In bang-phpug@yahoogroups.com, "=Raghav=" <raghav108@...> wrote:
>
> Hi,
> i also a memeber of PHP groups ,i am also new to PHP i wana learn from
> basics of PHP for web application...
> Kindly tell me how can i start learning  i know HTML ,CS3
>
> Kindly Tell From where shall i start
> Please Guide me
>
>
> <Thanks and Regards>
> Raghav :)
> Mail to:-  raghav108@...
> raghav_pandey108@...
>

#1034 From: "Vinu Thomas" <vinuthomas@...>
Date: Mon Apr 7, 2008 4:52 am
Subject: Re: watermark on video
uglyftp
Send Email Send Email
 
I'm not aware of any PHP functions to watermark video. You could check
out ffmpeg to do this task:
http://ffmpeg.mplayerhq.hu/documentation.html

Regards,
Vinu

--- In bang-phpug@yahoogroups.com, Pritesh Loke <priteshloke@...> wrote:
>
> Hello
>            can any body tell how to watermark on video using php code ?
> please help me.......
>
> Thank you in advance
>
>
>
>
> PML
>

#1035 From: "Vinu Thomas" <vinuthomas@...>
Date: Mon Apr 7, 2008 4:57 am
Subject: Re: MySQL License question
uglyftp
Send Email Send Email
 
MySQL has a flexible licensing policy : If you are working on a GPL
project where you are developing and deploying open source software,
then you're eligible for the free license.

If you plan to charge users for servies my best guess is that you may
need to pay for a license charges.

The best option would be to write in to MySQL, explain your project
and ask them which license policy is applicable for you.

Regards,
Vinu

--- In bang-phpug@yahoogroups.com, "thisistrinath" <thisistrinath@...>
wrote:
>
> Hello, I am creating a website where every user can register for free
> and do few things, but I will make money by displaying ads on the
> website. So do I have to buy a MySQL commercial license for that?
> Also, in case I charge my users for the services I offer, now do I have
> to buy a commercial license?
> Please answer, I am unable to understand the GPL.
>

#1036 From: "Mahabaleshwar" <mahihs2002@...>
Date: Tue Apr 8, 2008 9:19 am
Subject: Re: Astrology Software/Service
mahihs2002
Send Email Send Email
 
Dear friend,

  Actually I donot want to develop the software, am looking for some
horoscope webservice.do you have any idea about that?

regards,
Mahabaleshwar
--- In bang-phpug@yahoogroups.com, ganu <ganu.ullu@...> wrote:
>
> hello,
>
> I know how to analyze and make the horoscope.
> I can tell you the logic, I think that that will make seance.
>
> we can discuss off line.
> but as the indian tradition what will be the guru dakshina. :)
>
> --
>
> On Mon, Mar 31, 2008 at 6:11 PM, Mahabaleshwar <mahihs2002@...>
> wrote:
>
> >   Dear friends
> >
> > Is there any horoscope web service providers or horoscope software
> > that anybody implemented or know the details.Because horoscope
> > functionality I have to implement in our website. I donot have any
> > idea about that.
> >
> > My website configuration is
> >
> > Webaserver : Apache
> > Language : PHP
> > OS : Fedora 6
> >
> > Hoping to here from you
> >
> > regards
> > Mahabaleshwar
> >
> >
> >
>
>
> [Non-text portions of this message have been removed]
>

#1037 From: "aniltc81" <aniltc81@...>
Date: Thu Apr 10, 2008 10:03 am
Subject: php interview questions and answers
aniltc81
Send Email Send Email
 
hi all

Good site for preparing php interview questions and answers
(http://www.w3answers.com)

#1038 From: "aniltc81" <aniltc81@...>
Date: Thu Apr 10, 2008 10:27 am
Subject: Re: Help For PHP basics
aniltc81
Send Email Send Email
 
--- In bang-phpug@yahoogroups.com, "Vinu Thomas" <vinuthomas@...> wrote:
>
> Here's an article with a lot of other links ot useful reading material
> on PHP:
http://www.ibm.com/developerworks/opensource/library/os-php-read/
>
> Regards,
> Vinu
> --- In bang-phpug@yahoogroups.com, "=Raghav=" <raghav108@> wrote:
> >
> > Hi,
> > i also a memeber of PHP groups ,i am also new to PHP i wana learn from
> > basics of PHP for web application...
> > Kindly tell me how can i start learning  i know HTML ,CS3
> >
> > Kindly Tell From where shall i start
> > Please Guide me
> >
> >
> > <Thanks and Regards>
> > Raghav :)
> > Mail to:-  raghav108@
> > raghav_pandey108@
> >
>
its a nice article.
I found another one (www.w3answers.com)

#1039 From: manoj maurya <mkmaurya_it@...>
Date: Fri Apr 11, 2008 6:28 am
Subject: Create Module of Drupal
mkmaurya_it
Send Email Send Email
 
Hi Friends,

Any one have idea how can we create drupal module from
scratch. I want to create custom comment module
similarly orignal comment module but custom comment
module is rich in functionality.

Please help me ASAP.
Thanks in Advance.

Bye.

             Manoj Kr. Maurya
   (Software Engineer)
   Phone: +91-9911827700








__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#1040 From: "Muguntharaj Subramanian" <mugunth@...>
Date: Fri Apr 11, 2008 12:26 pm
Subject: Re: Create Module of Drupal
muguntharaj
Send Email Send Email
 
Hi,
You can check this URL for info about drupal module development:
http://drupal.org/node/508

-Mugunth

On Fri, Apr 11, 2008 at 11:58 AM, manoj maurya <mkmaurya_it@...>
wrote:

>   Hi Friends,
>
> Any one have idea how can we create drupal module from
> scratch. I want to create custom comment module
> similarly orignal comment module but custom comment
> module is rich in functionality.
>
> Please help me ASAP.
> Thanks in Advance.
>
> Bye.
>
> Manoj Kr. Maurya
> (Software Engineer)
> Phone: +91-9911827700
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
>



--

http://mugunth.blogspot.com
http://thamizha.com
http://tamilblogs.com


--
http://webspace2host.com
"Your friendly hosting provider"


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

#1041 From: binoy <binoymvee@...>
Date: Wed Apr 30, 2008 6:16 am
Subject: (No subject)
binoymvee
Send Email Send Email
 
Hi techies..
i would like to know which one is best frame work in php..
can you tell me ..

also in cake php and codeignitor which one is best..?

thanks
binoy



With Regards
   Binoy.M.V


---------------------------------
  Get the freedom to save as many mails as you wish. Click here to know how.

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

#1042 From: Lokesh M <lokesh16@...>
Date: Tue Apr 15, 2008 6:19 am
Subject: Info required on hoisting website
lokeshm5
Send Email Send Email
 
Dear bang-phpug

Recently I had an opportunity to design a small website for an upcoming
conference in Bangalore.
However all these days I did the work locally. Now I need to publish the same.
I have not hoisted any website before.
Furthermore I need to integrate online membership registration along with online
payment gateway.

Kindly provide me necessary information as to how and where to register in order
to hoist the said website and How online payment gateway is incorporated.
I also need help of one Freelance PHP programmer in Bangalore for this project.

Awaiting your early reply.

Regards
Lokesh M.

_________________________________________________________________
Video: Get a glimpse of the latest in Cricket, Bollywood, News and Fashion. Only
on MSN videos.
http://video.msn.com/?mkt=en-in

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

#1043 From: Pritesh Loke <priteshloke@...>
Date: Sat Apr 12, 2008 4:09 pm
Subject: download file help
priteshloke
Send Email Send Email
 
Hello to all
                 i am giving free download video files to user but i want add
some user info who download that file so if any user distributes that video file
i know who done that so any body help please ?

Thank you


PML
  __________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

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

#1044 From: "Vinu Thomas" <vinuthomas@...>
Date: Wed Apr 30, 2008 8:55 am
Subject: Re: (unknown)
uglyftp
Send Email Send Email
 
Hi Binoy,
The choice of frameworks depend on the task at hand. Each framework has it's
pros and cons. To get  a look at a feature comparision of some popular PHP
frameworks head over to the following links:
http://www.phpit.net/article/ten-different-php-frameworks/
http://ava.vereinsportal.ch/index/1169/file/php-framework-comparison.html

Personally, I like Zend Framework, due to it's ability to allow you use
individual pieces of the framework in separate projects, without having to
run the entire site on the Zend Framework. For eg: You can use Zend Search
or any of it's individual pieces in any other project, while at the same
time providing you the option to build your entire platform using Zend
Framework.

Regards,
Vinu

------------------------------
[image: My Blog] <http://blogs.vinuthomas.com>
[image: My Home Page] <http://www.vinuthomas.com>

On Wed, Apr 30, 2008 at 11:46 AM, binoy <binoymvee@...> wrote:

>   Hi techies..
> i would like to know which one is best frame work in php..
> can you tell me ..
>
> also in cake php and codeignitor which one is best..?
>
> thanks
> binoy
>
> With Regards
> Binoy.M.V
>
>
> ---------------------------------
> Get the freedom to save as many mails as you wish. Click here to know how.
>
> [Non-text portions of this message have been removed]
>
>
>


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

#1045 From: "geetanuj2002" <anuj.phpdeveloper@...>
Date: Wed Apr 30, 2008 9:39 am
Subject: Videos streaming & play videos
geetanuj2002
Send Email Send Email
 
plz give me suggestion. how videos streaming  and  play videos.


Anuj

#1046 From: "Harsha M V" <hmvrulz@...>
Date: Wed Apr 30, 2008 11:09 am
Subject: Re: Info required on hoisting website
hmvgprs
Send Email Send Email
 
hey.

you can use any of the complex cms around n build the site and add paypal
for payment system.
incase ur loooking in for accepting creditcard payments. your not aware to
set this up u wil need to shell lot of money.
alternative there may be companies which provide services where they accept
they payment for u n take a small cut n transfer the money to you. am not
aware of any such particular service. but Paypal is the best if u don wanna
shell out to much.

and about the freelancing let me know the exact details

--
Harsha M V
{http://hmv.co.in}


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

#1047 From: "Mahabaleshwar" <mahihs2002@...>
Date: Thu May 1, 2008 6:52 am
Subject: SSL certificates
mahihs2002
Send Email Send Email
 
Dear friends,

Please tell me which is the best and less cost SSL certificate
provider, option for multiple domains also

regards,
Mahabaleshwaran

#1048 From: "bhavna_coolinus" <bhavna_coolinus@...>
Date: Thu May 1, 2008 2:03 pm
Subject: Plese help me to solve this problem I am trying from 2 days
bhavna_coolinus
Send Email Send Email
 
Write classes to represent 3 different types of Bee - Worker, Queen
and Drone.
Each Bee has a floating-point health property, which is not writable
externally and
upon creation is set to a value of 100 (percent).
Each Bee has a Damage() method that takes a single integer parameter
that should be
a value between 0 and 100. When this method is called, the health of
the bee is to be
reduced by that percentage of their current health.
When a Worker has a health below 70% it cannot fly and therefore is
pronounced
Dead. When a Queen has a health below 20%, or a Drone below 50%, it is
pronounced dead. This 'Dead' property should be readable from each
Bee. When a
Bee is dead, no further health deductions should be recorded by the
bee, although the
Damage() method should still be invokable without error.
Your application should create a single list containing 10 instances
of each type of
Bee. It must support methods to allow Damage() to be called for each
Bee, and to
return the health status of each bee, including whether it is alive or
not.
The user interface should show the current status of each bee and
contain a button.
When clicked, a different random value between 0 and 80 should be
selected for each
bee and applied with a call to Damage(). After each click the page
should refresh to
show the health status of the bees.


-----------------
I have created the base class Bee and three different derived class of
three types of Bees.

but my question is how can I store the last helth persontage to check
weather bee is dead or not, bcoze once bee is dead there should not be
any further deduction in helth value.... also every time page should
refresh and when user click button.

so my problem is if page refreshes every time then every time new
instance of class is going to create and i never be able to maintain
health status of Bee....

I donn know whether I am not getting the question properly or or I
donn know the solution... Plese let have some idea how can i solve
this problem?


Thanks in advance
Bhavna.

#1049 From: "thisistrinath" <thisistrinath@...>
Date: Thu May 1, 2008 8:26 pm
Subject: Re: Info required on hoisting website
thisistrinath
Send Email Send Email
 
Hi,
    Currently, I am also looking for ways to accept money on my site. I
have decided to go for Google Checkout. Google Checkout takes charges
only 2% for credit card processing, while paypal takes more. Also if
you are using Google Adwords, there will be no processing fee for sales
upto 10 times your Adwords spending. Suppose you spend $100 dollar per
month on Adwords, then google will not charge you for credit card
processing for sales upto $1000 per month. Thats just other benefit
besides the 2% advantage.
And how to integrate that service into your website, you can go to
https://checkout.google.com/seller/developers.html and find out how to
do it. Good luck.

#1050 From: "thisistrinath" <thisistrinath@...>
Date: Thu May 1, 2008 8:31 pm
Subject: Re: SSL certificates
thisistrinath
Send Email Send Email
 
I don't about which is best, but for less there is good certificate from
GoDaddy services. GoDaddy is a reputed website. It takes only $29 per
YEAR. So thats less. For more information go to
http://www.godaddy.com/gdshop/ssl/turbo.asp?isc=tebssl01
Good Luck
Trinadh Yerra

#1051 From: mahabaleshwara bhat <mahihs2002@...>
Date: Fri May 2, 2008 3:59 am
Subject: Re: Re: SSL certificates
mahihs2002
Send Email Send Email
 
Hi  Trinadh

thanks for your reply.Do you know any OS dependency is there for installing
SSL?, means all the SSL certificate can be installed in Linux/Apache right?

regards,
Mahabaleshwaran

thisistrinath <thisistrinath@...> wrote:                             I
don't about which is best, but for less there is good certificate from
  GoDaddy services. GoDaddy is a reputed website. It takes only $29 per
  YEAR. So thats less. For more information go to
  http://www.godaddy.com/gdshop/ssl/turbo.asp?isc=tebssl01
  Good Luck
  Trinadh Yerra






Mahabaleshwaran HS,
Web Developer,
Team IT,
Clearock Inc
Bangalore.
09886904521(M)

---------------------------------
  Unlimited freedom, unlimited storage. Get it now

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

#1052 From: "Vinu Thomas" <vinuthomas@...>
Date: Fri May 2, 2008 5:19 am
Subject: Re: SSL certificates
uglyftp
Send Email Send Email
 
Usually when you buy an SSL certificate you'll have to choose your
platform (apache, IIS,...) for which you're buying the certificate for.

Regards,
Vinu

--- In bang-phpug@yahoogroups.com, mahabaleshwara bhat
<mahihs2002@...> wrote:
>
> Hi  Trinadh
>
> thanks for your reply.Do you know any OS dependency is there for
installing SSL?, means all the SSL certificate can be installed in
Linux/Apache right?
>
> regards,
> Mahabaleshwaran
>
> thisistrinath <thisistrinath@...> wrote:
  I don't about which is best, but for less there is good certificate from
>  GoDaddy services. GoDaddy is a reputed website. It takes only $29 per
>  YEAR. So thats less. For more information go to
>  http://www.godaddy.com/gdshop/ssl/turbo.asp?isc=tebssl01
>  Good Luck
>  Trinadh Yerra
>
>
>
>
>
>
> Mahabaleshwaran HS,
> Web Developer,
> Team IT,
> Clearock Inc
> Bangalore.
> 09886904521(M)
>
> ---------------------------------
>  Unlimited freedom, unlimited storage. Get it now
>
> [Non-text portions of this message have been removed]
>

#1053 From: "Mahabaleshwar" <mahihs2002@...>
Date: Fri May 2, 2008 5:34 am
Subject: Re: SSL certificates
mahihs2002
Send Email Send Email
 
Thanks vinu.

that means all the SSL providers will be having option for apache
server, why am asking is I couldnot able to find information regarding
  System requirements in all these sites like Verisign, thawte,
Geotrust, godaddy etc

regards,
Mahabaleshwaran
--- In bang-phpug@yahoogroups.com, "Vinu Thomas" <vinuthomas@...> wrote:
>
> Usually when you buy an SSL certificate you'll have to choose your
> platform (apache, IIS,...) for which you're buying the certificate for.
>
> Regards,
> Vinu
>
> --- In bang-phpug@yahoogroups.com, mahabaleshwara bhat
> <mahihs2002@> wrote:
> >
> > Hi  Trinadh
> >
> > thanks for your reply.Do you know any OS dependency is there for
> installing SSL?, means all the SSL certificate can be installed in
> Linux/Apache right?
> >
> > regards,
> > Mahabaleshwaran
> >
> > thisistrinath <thisistrinath@> wrote:
>  I don't about which is best, but for less there is good certificate
from
> >  GoDaddy services. GoDaddy is a reputed website. It takes only $29
per
> >  YEAR. So thats less. For more information go to
> >  http://www.godaddy.com/gdshop/ssl/turbo.asp?isc=tebssl01
> >  Good Luck
> >  Trinadh Yerra
> >
> >
> >
> >
> >
> >
> > Mahabaleshwaran HS,
> > Web Developer,
> > Team IT,
> > Clearock Inc
> > Bangalore.
> > 09886904521(M)
> >
> > ---------------------------------
> >  Unlimited freedom, unlimited storage. Get it now
> >
> > [Non-text portions of this message have been removed]
> >
>

#1054 From: "thisistrinath" <thisistrinath@...>
Date: Fri May 2, 2008 4:04 pm
Subject: Re: SSL certificates
thisistrinath
Send Email Send Email
 
Hi Mahabaleshwaran,
Go to http://www.godaddy.com/gdshop/ssl/turbo.asp?isc=tebssl01 you
will see few tabs there, click on FAQS tab and then click on the
question which says "How do I install my Web Server Certificate?" Once
you click that a new window pops up. Then click on the only link there
in that window and you will see what you want. Try it and tell me if
thats the one you wanted to know.
Trinadh

Messages 1024 - 1054 of 1863   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