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 583 - 612 of 1863   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#583 From: "guruj_r" <guruj_r@...>
Date: Mon Jul 2, 2007 8:31 am
Subject: How to get the web page with the Query string...
guruj_r
Send Email Send Email
 
Hi,

     I am in a requirement that i need to restrict the no. of records
shown in a page to some 10 records (Search page) and pagination to
be done. Need to show the No. of pages at the bottom. Each page
should lead to that page with specific records eg., first page - 1-
10 records, second page - 11-20 records,...

     I have found about "how to restrict the records and display it"
(by using Limit in the sql Query).

     But my only problem is i need to frame the sql query with the
inputs given by the user in the previous page which is available in
the query string... Now i need to pass the same query string to each
page (while navigation) so that i can restrict and show the records
based on Limit applied to the query...

    Can anyone help if you knew the answer...

Thanks in advance,

Regards,
Guru

#584 From: Chidu <chidanandmba@...>
Date: Tue Jul 3, 2007 5:09 am
Subject: Re: How to get the web page with the Query string...
chidanandgb_...
Send Email Send Email
 
On 7/2/07, guruj_r <guruj_r@...> wrote:
Hi,

I am in a requirement that i need to restrict the no. of records
shown in a page to some 10 records (Search page) and pagination to
be done. Need to show the No. of pages at the bottom. Each page
should lead to that page with specific records eg., first page - 1-
10 records, second page - 11-20 records,...

I have found about "how to restrict the records and display it"
(by using Limit in the sql Query).

But my only problem is i need to frame the sql query with the
inputs given by the user in the previous page which is available in
the query string... Now i need to pass the same query string to each
page (while navigation) so that i can restrict and show the records
based on Limit applied to the query...

Can anyone help if you knew the answer...

Thanks in advance,

Regards,
Guru


Hey Guru,

First look for the total no. of records and using LIMIT 0,0 in the sql, then
based on the user specifications of the number of pages to be displayed,
keep that value as a session variable (or pass the value thru the url ) and
then fetch those no. of records using the same limit...

--
Chidanand. G. B
+91-98456-51235


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

#585 From: Pritesh Loke <priteshloke@...>
Date: Wed Jul 4, 2007 11:51 am
Subject: Problem in array
priteshloke
Send Email Send Email
 
Hello to all

                   i have one problem in php array.
This is the eg
$array_check = array(0=>"100",1=>"200",2=>"100");

i have this array $array_check contains 2 times 100 values. so i want to give an
error this list contains two same value how can i do that any idea ?


PML

---------------------------------
Got a little couch potato?
Check out fun summer activities for kids.

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

#586 From: "Amit Rana" <amitrana77@...>
Date: Wed Jul 4, 2007 6:02 am
Subject: Re: How to get the web page with the Query string...
amitrana77
Send Email Send Email
 
If number of parameters and their values are small i.e. query string
is not very huge append it to each pager link i.e. page 1, page 2,
next etc
If there are lots of paraneters, create a form with hidden variables
and post that form on click of your pager links.

HTH

--- In bang-phpug@yahoogroups.com, "guruj_r" <guruj_r@...> wrote:
>
> Hi,
>
>     I am in a requirement that i need to restrict the no. of records
> shown in a page to some 10 records (Search page) and pagination to
> be done. Need to show the No. of pages at the bottom. Each page
> should lead to that page with specific records eg., first page - 1-
> 10 records, second page - 11-20 records,...
>
>     I have found about "how to restrict the records and display it"
> (by using Limit in the sql Query).
>
>     But my only problem is i need to frame the sql query with the
> inputs given by the user in the previous page which is available in
> the query string... Now i need to pass the same query string to each
> page (while navigation) so that i can restrict and show the records
> based on Limit applied to the query...
>
>    Can anyone help if you knew the answer...
>
> Thanks in advance,
>
> Regards,
> Guru
>

#587 From: "maq005" <maq005@...>
Date: Mon Jul 2, 2007 12:26 pm
Subject: Re: How can I send sms through PHP
maq005
Send Email Send Email
 
Hey Madhur,

To send sms you need a sms gateway, which will forword your sms to the
users. Please google for that......

Am work on sms handling these days on Mytoday project. We have
recently launched product called MOBS please have a look at
pub.mytoday.com.

Coming back to your question, sending sms all depends on which service
provider or gateway you choose. The format of sending data differs.

There are two which I know ACL and Value First please google for details.


Here is the simple function :


//Send the messages using the VF gateway function vf_sendsms ($nums,
$msg) {         $start = time();     $post_location = 'url from VF';
    $host = 'url from VF';     $port = '80';     $from = 'your
address';     $send_msg = utf8_encode(htmlspecialchars($msg));
  $hash_seed = $start.mt_rand().$msg;     $msgid = md5($hash_seed);
   $phone_nums = '';     foreach ($nums as $n) {   $phone_nums .=
'<ADDRESS FROM="'.$from.'" TO="'.$n.'" SEQ="'.$n.'" TAG="" />';     }
      $query_string = 'data=<?xml version="1.0"
encoding="ISO-8859-1"?><!DOCTYPE Messaging SYSTEM
"http://127.0.0.1/psms/dtd/message.dtd" ><MESSAGE><USER
USERNAME="yourname" PASSWORD="shnetkk67"/><SMS UDH="0" CODING="1"
TEXT="'.$send_msg.'" PROPERTY="0"
ID="'.$msgid.'">'.$phone_nums.'</SMS></MESSAGE>&action=send';
$http_request  = "POST ".$post_location." HTTP/1.0\r\n";
$http_request .= "Host: ".$host."\r\n";     $http_request .=
'Content-Type: application/x-www-form-urlencoded'."\r\n";
$http_request .= 'Content-Length: ' . strlen($query_string) . "\r\n";
     $http_request .= 'User-Agent: Your address' . "\r\n";
$http_request .= "\r\n";     $http_request .= $query_string;
$response = '';     if ( false
  !== ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
    fwrite($fs, $http_request);         while ( !feof($fs) )
   $response .= fgets($fs, 4096);   fclose($fs);         $response =
explode("\r\n\r\n", $response, 2);         $body = trim( $response[1]
);         $body = str_replace(array("\r\n", "\r"), "\n", $body);
     $xml = new SimpleXMLElement($body);         if(isset($xml->Err)) {
       //Get the error code and dump the message in the log
foreach($xml->Err->attributes() as $b) { $errmsg .= "\t".$b; }    $log
= "[tool: Send Test SMS - VF]\t[query: $query_string]\t".$errmsg;
         $util->log($log, 'CRIT', 'ADMIN');             print '<span
class="red">The message could not be sent. Please check if the format
of your message is correct.</span>';             return 0;         }
        elseif(isset($xml->GUID) ) {    $data['nums'] =
serialize($nums);             $data['msg'] = $msg;
  foreach($xml->GUID->attributes() as $b) { $successmsg .= "\t".$b; }
   $log = "[tool: Send Test SMS - VF]\t[query:
$query_string]\t".$successmsg;             $util->log($log, 'INFO',
'ADMIN');             print '<span class="red">The message was
successfully sent.</span>';             return 1;         }     }
else {         print '<span class="red">The messages could not be sent
as there was an error connecting to the gateway.';         return 2;
    } }

2) On which event i have to send it(there is no admin click and any
other event. admin just save the message body.)

I suggest you to use cron job which will take the message and send sms
on specfic time.

3) How to send sms according to the time zone.

As I have said earlier, SMS gateway check out with them if you can
send international sms and about timezone  I havn't worked no it I
think that shud be simple by setting the time zone based on country.


Hope that helps you. Please lemme know for any clarification.


Regards,
Mohammed Maqsood




--- In bang-phpug@yahoogroups.com, "madhur_gemini" <madhur_gemini@...>
wrote:
>
> Dear Member,
>
> I need your help, i have assigned a difficult(for me) task.
>
> Can any one tell me the procedure how can we send worldwide sms
> through php.
>
> Sms should be sent according to the time zone and in everycountry
> every subscribers got sms at 9 AM in morning.
>
> My Queries are:
>
> 1) How to send sms(is it possible in php)?
> 2) On which event i have to send it(there is no admin click and any
> other event. admin just save the message body.)
> 3) How to send sms according to the time zone.
>
> Anybody please advice me.
>
> Thanks
> Madhukar Garg
> madhur_gemini@...
>

#588 From: "Suketu S Parikh" <suketuparikh@...>
Date: Wed Jul 4, 2007 12:16 pm
Subject: Re: Problem in array
suketu_721982
Send Email Send Email
 
you can try using array_unique() function it will give unique array in
return. if you want to display error message compare length of original
array and unique array length. and display error.

On 7/4/07, Pritesh Loke <priteshloke@...> wrote:
>
> Hello to all
>
>                   i have one problem in php array.
> This is the eg
> $array_check = array(0=>"100",1=>"200",2=>"100");
>
> i have this array $array_check contains 2 times 100 values. so i want to
> give an error this list contains two same value how can i do that any idea ?
>
>
> PML
>
> ---------------------------------
> Got a little couch potato?
> Check out fun summer activities for kids.
>
> [Non-text portions of this message have been removed]
>
>
>
>
> Yahoo! Groups Links
>
>
>
>


--
Suketu Parikh


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

#589 From: Koushik G raj <koushikgraj@...>
Date: Thu Jul 5, 2007 4:13 am
Subject: Re: Re: How to get the web page with the Query string...
koushikgraj
Send Email Send Email
 
In pagination link, send same old query string with same name and value.

for eg  displaypage.php?recordset=20 & oldname=oldvalue.

Amit Rana <amitrana77@...> wrote:                                  If
number of parameters and their values are small i.e. query string
  is not very huge append it to each pager link i.e. page 1, page 2,
  next etc
  If there are lots of paraneters, create a form with hidden variables
  and post that form on click of your pager links.

  HTH

  --- In bang-phpug@yahoogroups.com, "guruj_r" <guruj_r@...> wrote:
  >
  > Hi,
  >
  >     I am in a requirement that i need to restrict the no. of records
  > shown in a page to some 10 records (Search page) and pagination to
  > be done. Need to show the No. of pages at the bottom. Each page
  > should lead to that page with specific records eg., first page - 1-
  > 10 records, second page - 11-20 records,...
  >
  >     I have found about "how to restrict the records and display it"
  > (by using Limit in the sql Query).
  >
  >     But my only problem is i need to frame the sql query with the
  > inputs given by the user in the previous page which is available in
  > the query string... Now i need to pass the same query string to each
  > page (while navigation) so that i can restrict and show the records
  > based on Limit applied to the query...
  >
  >    Can anyone help if you knew the answer...
  >
  > Thanks in advance,
  >
  > Regards,
  > Guru
  >






---------------------------------
  Here’s a new way to find what you're looking for - Yahoo! Answers

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

#590 From: raja mohamed <md_libra81@...>
Date: Thu Jul 5, 2007 6:00 am
Subject: Re: Problem in array
md_libra81
Send Email Send Email
 
use this function for ur problem "array_count_values". plz refer this url :
http://in2.php.net/manual/en/function.array-count-values.php

With Regards,
   Raja Mohamed.S


----- Original Message ----
From: Pritesh Loke <priteshloke@...>
To: "bang-phpug@yahoogroups.com" <bang-phpug@yahoogroups.com>;
"php4india@yahoogroups.com" <php4india@yahoogroups.com>;
"php_and_mysql@yahoogroups.com" <php_and_mysql@yahoogroups.com>
Sent: Wednesday, 4 July, 2007 5:21:38 PM
Subject: [bang-phpug] Problem in array













             Hello to all



i have one problem in php array.

This is the eg

$array_check = array(0=>"100" ,1=>"200" ,2=>"100" );



i have this array $array_check contains 2 times 100 values. so i want to give an
error this list contains two same value how can i do that any idea ?



PML



------------ --------- --------- ---

Got a little couch potato?

Check out fun summer activities for kids.



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














<!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean,
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:upp\
ercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-ri\
ght:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a {
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc {
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%\
;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o {font-size:0;}
.MsoNormal {
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq {margin:4;}
-->









__________________________________________________________
Yahoo! India Answers: Share what you know. Learn something new
http://in.answers.yahoo.com/

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

#591 From: Pritesh Loke <priteshloke@...>
Date: Thu Jul 5, 2007 12:57 pm
Subject: Re: Problem in array
priteshloke
Send Email Send Email
 
thank you all for help

raja mohamed <md_libra81@...> wrote:                                 
use this function for ur problem "array_count_values". plz refer this url :
http://in2.php.net/manual/en/function.array-count-values.php

  With Regards,
    Raja Mohamed.S

  ----- Original Message ----
  From: Pritesh Loke <priteshloke@...>
  To: "bang-phpug@yahoogroups.com" <bang-phpug@yahoogroups.com>;
"php4india@yahoogroups.com" <php4india@yahoogroups.com>;
"php_and_mysql@yahoogroups.com" <php_and_mysql@yahoogroups.com>
  Sent: Wednesday, 4 July, 2007 5:21:38 PM
  Subject: [bang-phpug] Problem in array

  Hello to all

  i have one problem in php array.

  This is the eg

  $array_check = array(0=>"100" ,1=>"200" ,2=>"100" );

  i have this array $array_check contains 2 times 100 values. so i want to give
an error this list contains two same value how can i do that any idea ?

  PML

  ------------ --------- --------- ---

  Got a little couch potato?

  Check out fun summer activities for kids.

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

  <!--

  #ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
  #ygrp-mlmsg table {font-size:inherit;font:100%;}
  #ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean,
sans-serif;}
  #ygrp-mlmsg pre, code {font:115% monospace;}
  #ygrp-mlmsg * {line-height:1.22em;}
  #ygrp-text{
  font-family:Georgia;
  }
  #ygrp-text p{
  margin:0 0 1em 0;}
  #ygrp-tpmsgs{
  font-family:Arial;
  clear:both;}
  #ygrp-vitnav{
  padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
  #ygrp-vitnav a{
  padding:0 1px;}
  #ygrp-actbar{
  clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
  #ygrp-actbar .left{
  float:left;white-space:nowrap;}
  .bld{font-weight:bold;}
  #ygrp-grft{
  font-family:Verdana;font-size:77%;padding:15px 0;}
  #ygrp-ft{
  font-family:verdana;font-size:77%;border-top:1px solid #666;
  padding:5px 0;
  }
  #ygrp-mlmsg #logo{
  padding-bottom:10px;}

  #ygrp-vital{
  background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
  #ygrp-vital #vithd{
 
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:upp\
ercase;}
  #ygrp-vital ul{
  padding:0;margin:2px 0;}
  #ygrp-vital ul li{
  list-style-type:none;clear:both;border:1px solid #e0ecee;
  }
  #ygrp-vital ul li .ct{
 
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-ri\
ght:.5em;}
  #ygrp-vital ul li .cat{
  font-weight:bold;}
  #ygrp-vital a {
  text-decoration:none;}

  #ygrp-vital a:hover{
  text-decoration:underline;}

  #ygrp-sponsor #hd{
  color:#999;font-size:77%;}
  #ygrp-sponsor #ov{
  padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
  #ygrp-sponsor #ov ul{
  padding:0 0 0 8px;margin:0;}
  #ygrp-sponsor #ov li{
  list-style-type:square;padding:6px 0;font-size:77%;}
  #ygrp-sponsor #ov li a{
  text-decoration:none;font-size:130%;}
  #ygrp-sponsor #nc {
  background-color:#eee;margin-bottom:20px;padding:0 8px;}
  #ygrp-sponsor .ad{
  padding:8px 0;}
  #ygrp-sponsor .ad #hd1{
 
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%\
;}
  #ygrp-sponsor .ad a{
  text-decoration:none;}
  #ygrp-sponsor .ad a:hover{
  text-decoration:underline;}
  #ygrp-sponsor .ad p{
  margin:0;}
  o {font-size:0;}
  .MsoNormal {
  margin:0 0 0 0;}
  #ygrp-text tt{
  font-size:120%;}
  blockquote{margin:0 0 0 4px;}
  .replbq {margin:4;}
  -->


  __________________________________________________________
  Yahoo! India Answers: Share what you know. Learn something new
  http://in.answers.yahoo.com/

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






PML

---------------------------------
Fussy? Opinionated? Impossible to please? Perfect.  Join Yahoo!'s user panel and
lay it on us.

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

#592 From: "jatinder kaur" <jatinderkaur100@...>
Date: Sun Jul 8, 2007 7:34 am
Subject: Re: FCKEditor problem
jatinder_php
Send Email Send Email
 
hi pritesh,
have u put html code of textarea whose name should be *FCKeditor1* or any
one u like to put. below is the code and let me know,
************************************************************
?>
  <textarea rows='15' cols='82' name='*FCKeditor1*'></textarea>
<?php
include("FCKeditor/fckeditor.php");
$oFCKeditor = new FCKeditor('*FCKeditor1*') ;
$oFCKeditor->BasePath = 'FCKeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Height = '350';
$oFCKeditor->Width =  '100%';
$oFCKeditor->Create() ;

******************************************************************
jatinder
On 6/16/07, Pritesh Loke <priteshloke@...> wrote:
>
>   Hello pls checked this link
>
> http://onlinexcasinos.com/ponline/admin/fck.php
>
> i try to put fck editor but they show me this can any body tell me the
> problem ?
>
> This is my fck code
> include("FCKeditor/fckeditor.php");
> $oFCKeditor = new FCKeditor('FCKeditor1') ;
> $oFCKeditor->BasePath = 'FCKeditor/';
> $oFCKeditor->Value = 'Default text in editor';
> $oFCKeditor->Create() ;
>
> Thank you
>
> PML
>
> ---------------------------------
> Choose the right car based on your needs. Check out Yahoo! Autos new Car
> Finder tool.
>
> [Non-text portions of this message have been removed]
>
>
>


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

#593 From: prem panshette <param_1480@...>
Date: Mon Jul 9, 2007 6:03 am
Subject: Re: FCKEditor problem
param_1480
Send Email Send Email
 
Please elaborate your problem  i have not understood your problem and try alo
this
i.e. give the height as 100 %

jatinder kaur <jatinderkaur100@...> wrote:
hi pritesh,
  have u put html code of textarea whose name should be *FCKeditor1* or any
  one u like to put. below is the code and let me know,
  ************************************************************
  ?>
   <textarea rows='15' cols='82' name='*FCKeditor1*'></textarea>
  <?php
  include("FCKeditor/fckeditor.php");
  $oFCKeditor = new FCKeditor('*FCKeditor1*') ;
  $oFCKeditor->BasePath = 'FCKeditor/';
  $oFCKeditor->Value = 'Default text in editor';
  $oFCKeditor->Height = '350';
  $oFCKeditor->Width =  '100%';
  $oFCKeditor->Create() ;

  ******************************************************************
  jatinder
  On 6/16/07, Pritesh Loke <priteshloke@...> wrote:
  >
  >   Hello pls checked this link
  >
  > http://onlinexcasinos.com/ponline/admin/fck.php
  >
  > i try to put fck editor but they show me this can any body tell me the
  > problem ?
  >
  > This is my fck code
  > include("FCKeditor/fckeditor.php");
  > $oFCKeditor = new FCKeditor('FCKeditor1') ;
  > $oFCKeditor->BasePath = 'FCKeditor/';
  > $oFCKeditor->Value = 'Default text in editor';
  > $oFCKeditor->Create() ;
  >
  > Thank you
  >
  > PML
  >
  > ---------------------------------
  > Choose the right car based on your needs. Check out Yahoo! Autos new Car
  > Finder tool.
  >
  > [Non-text portions of this message have been removed]
  >
  >
  >

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





  Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download
Now! http://messenger.yahoo.com/download.php

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

#594 From: nandan raj <iamnandans@...>
Date: Tue Jul 10, 2007 6:44 pm
Subject: create cron jobs in windows using php
iamnandans
Send Email Send Email
 
Hi,
    I have a requirement of creating/Editing/Deleting cron jobs(schedule Tasks)
in windows through PHP. Can anyone let me know, how this can be done through
PHP.  If sample code is available, please post that too,It will make my job much
easier.

    thanks in advance.

nanda


---------------------------------
Luggage? GPS? Comic books?
Check out fitting  gifts for grads at Yahoo! Search.

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

#595 From: nparthiban nparthiban <nparthi_2006@...>
Date: Thu Jul 12, 2007 4:30 am
Subject: Re:create cron jobs in windows using php
nparthi_2006
Send Email Send Email
 
hi

    Goto hosting control panel and click the shcedule task and also choose job
time give the physical path to the file.the cronjob is running

Regards
Parthiban.N




---------------------------------
  Once upon a time there was 1 GB storage in your inbox. Click here for happy
ending.

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

#596 From: "Binoy" <binoyav@...>
Date: Thu Jul 12, 2007 5:13 am
Subject: Re: create cron jobs in windows using php
binoyav_kvr
Send Email Send Email
 
Add your normal php file (for example: php file for updating the count
  of a table field on each day) to the cron. For windows you can use
visual cron. http://www.visualcron.com/

More on
http://www.htmlcenter.com/tutorials/tutorials.cfm/155/PHP/


--- In bang-phpug@yahoogroups.com, nandan raj <iamnandans@...> wrote:
>
> Hi,
>    I have a requirement of creating/Editing/Deleting cron
jobs(schedule Tasks) in windows through PHP. Can anyone let me know,
how this can be done through PHP.  If sample code is available, please
post that too,It will make my job much easier.
>
>    thanks in advance.
>
> nanda
>
>
> ---------------------------------
> Luggage? GPS? Comic books?
> Check out fitting  gifts for grads at Yahoo! Search.
>
> [Non-text portions of this message have been removed]
>

#597 From: "anu_id2006" <anu_id2006@...>
Date: Thu Jul 12, 2007 5:55 am
Subject: htmlspecialchars Function is not working
anu_id2006
Send Email Send Email
 
<?
$str = "<script>contact</script>";
//its output will be <script>contactltscriptgt   --- something like
this
$val=htmlspecialchars($str, ENT_QUOTES);
echo $val;
?>
htmlspecialchars Function is not working it shows
"<script>contact</script>" this only

#598 From: prem panshette <param_1480@...>
Date: Thu Jul 12, 2007 6:12 am
Subject: Re: htmlspecialchars Function is not working
param_1480
Send Email Send Email
 
Hi
Instead of this
htmlspecialcha rs($str, ENT_QUOTES);

use

htmlentities($str);

anu_id2006 <anu_id2006@...> wrote:                                  <?
  $str = "<script>contact</script>";
  //its output will be <script>contactltscriptgt   --- something like
  this
  $val=htmlspecialchars($str, ENT_QUOTES);
  echo $val;
  ?>
  htmlspecialchars Function is not working it shows
  "<script>contact</script>" this only






---------------------------------
  Here’s a new way to find what you're looking for - Yahoo! Answers

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

#599 From: "pradeeprkara" <pradeeprkara@...>
Date: Mon Jul 16, 2007 11:32 am
Subject: How to use mail() effectively?
pradeeprkara
Send Email Send Email
 
Hi all,

I have implemented a mail function with mail(), which is working fine.
But all the mails I am sending are going to the bulk/spam folder. How
can I send mails directly to the inbox?

Thanks in advance,
Pradeep

#600 From: "Pradeep" <pradeepbv@...>
Date: Thu Jul 19, 2007 11:42 am
Subject: How about a bang-phpug meetup at Barcamp Bangalore 4?
pradeepbv
Send Email Send Email
 
Hi,

The Bangalore Barcamp 4 (BCB$) is happening on 28th and 29th of this
month at IIM-B. More of it here .. (http://barcampbangalore.org/)

Python (http://barcampbangalore.org/wiki/BCB4_BangPypers), Ruby
(http://barcampbangalore.org/wiki/BCB4_Ruby_Collective) and Java
(http://barcampbangalore.org/wiki/BCB4_BOJUG) user groups are already
congregating there.

I think that it would be nice to have a bang-phpug congregation along
the same lines.

What do you people say?

If you are interested just register yourself on the BCB4 wiki at
http://barcampbangalore.org/wiki/BCB4_PHP_Collective

You can browser through other collectives here..
9http://barcampbangalore.org/wiki/BCB4_Collectives)

Regards,
Pradeep B V
www.btis.in

#601 From: "Vinu Thomas" <vinuthomas@...>
Date: Thu Jul 19, 2007 2:29 pm
Subject: Re: How about a bang-phpug meetup at Barcamp Bangalore 4?
uglyftp
Send Email Send Email
 
Great idea Pradeep. :)

I'll register at the link you've provided

Regards,
Vinu

--- In bang-phpug@yahoogroups.com, "Pradeep" <pradeepbv@...> wrote:
>
> Hi,
>
> The Bangalore Barcamp 4 (BCB$) is happening on 28th and 29th of this
> month at IIM-B. More of it here .. (http://barcampbangalore.org/)
> I think that it would be nice to have a bang-phpug congregation along
> the same lines.
>
> What do you people say?
>
> If you are interested just register yourself on the BCB4 wiki at
> http://barcampbangalore.org/wiki/BCB4_PHP_Collective
>
> You can browser through other collectives here..
> 9http://barcampbangalore.org/wiki/BCB4_Collectives)
>
> Regards,
> Pradeep B V
> www.btis.in
>

#602 From: maq sood <maq005@...>
Date: Fri Jul 20, 2007 4:32 am
Subject: Re: Re: How about a bang-phpug meetup at Barcamp Bangalore 4?
maq005
Send Email Send Email
 
Yes thats a good Idea

Vinu Thomas <vinuthomas@...> wrote:                                  Great
idea Pradeep. :)

  I'll register at the link you've provided

  Regards,
  Vinu

  --- In bang-phpug@yahoogroups.com, "Pradeep" <pradeepbv@...> wrote:
  >
  > Hi,
  >
  > The Bangalore Barcamp 4 (BCB$) is happening on 28th and 29th of this
  > month at IIM-B. More of it here .. (http://barcampbangalore.org/)
  > I think that it would be nice to have a bang-phpug congregation along
  > the same lines.
  >
  > What do you people say?
  >
  > If you are interested just register yourself on the BCB4 wiki at
  > http://barcampbangalore.org/wiki/BCB4_PHP_Collective
  >
  > You can browser through other collectives here..
  > 9http://barcampbangalore.org/wiki/BCB4_Collectives)
  >
  > Regards,
  > Pradeep B V
  > www.btis.in
  >






---------------------------------
Need a vacation? Get great deals to amazing places on Yahoo! Travel.

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

#603 From: "Vinu Thomas" <vinuthomas@...>
Date: Fri Jul 20, 2007 10:32 am
Subject: BCB4 PHP Meetup
uglyftp
Send Email Send Email
 
Hi All,

Just wanted to check with the rest of the group if you're gonna join
us at the PHP collective at Barcamp Bangalore 4. If you're joining us
or planning to join us, please add your name over at:
http://barcampbangalore.org/wiki/BCB4_PHP_Collective

Even if you're just thinking of visiting but are unsure, leave your
name  under the Tentative Registrations.

Do you have any ideas or suggestions on what you'd like to hear about
at these sessions? Either reply to this message or add your
suggestions under the " Topics you'd like to hear about" section at
the link above.

Hoping to meetup with the Bangalore PHP'ers over at BCB4!

Regards,
Vinu

#604 From: bhavna patel <bhavna_coolinus@...>
Date: Fri Jul 20, 2007 10:14 am
Subject: need help in javascript
bhavna_coolinus
Send Email Send Email
 
Hi ,

Can any one tell me using which event we can know weather web page is going to
close.

I need to refresh my page continuous on the server its containing some
background process, But when any one try to close this page I have make
confirmation before closin page, for this I got one solution that is if i use
onbeforeunload event of  <body>

But my problem is if i call any function onbeforeunload i have to chek weather
page has been refreshed or closed. if refresh then let it be continuw but on
close i want to restrict the user.


If need some help of javascript experts. please let me know if anybody can help
me out on this problem or any new suggetion other than onbeforeunload event.


Thanks in advance,
Bhavna.



________________________________________________________________________________\
____
Be a better Globetrotter. Get better travel answers from someone who knows.
Yahoo! Answers - Check it out.
http://answers.yahoo.com/dir/?link=list&sid=396545469

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

#605 From: "bhavna_coolinus" <bhavna_coolinus@...>
Date: Fri Jul 20, 2007 10:16 am
Subject: How do i know weather current window is going to close in javascript
bhavna_coolinus
Send Email Send Email
 
Hi ,

Can any one tell me using which event we can know weather web page
is going to close.

I need to refresh my page continuous on the server its containing
some background process, But when any one try to close this page I
have make confirmation before closin page, for this I got one
solution that is if i use onbeforeunload event of  <body>

But my problem is if i call any function onbeforeunload i have to
chek weather page has been refreshed or closed. if refresh then let
it be continuw but on close i want to restrict the user.


If need some help of javascript experts. please let me know if
anybody can help me out on this problem or any new suggetion other
than onbeforeunload event.


Thanks in advance,
Bhavna.

#606 From: Madesh waran <madesh_gsv@...>
Date: Fri Jul 20, 2007 11:53 am
Subject: Re: need help in javascript
madesh_gsv
Send Email Send Email
 
onUnload in body event will help u out.

bhavna patel <bhavna_coolinus@...> wrote:                                 
Hi ,

  Can any one tell me using which event we can know weather web page is going to
close.

  I need to refresh my page continuous on the server its containing some
background process, But when any one try to close this page I have make
confirmation before closin page, for this I got one solution that is if i use
onbeforeunload event of  <body>

  But my problem is if i call any function onbeforeunload i have to chek weather
page has been refreshed or closed. if refresh then let it be continuw but on
close i want to restrict the user.

  If need some help of javascript experts. please let me know if anybody can help
me out on this problem or any new suggetion other than onbeforeunload event.

  Thanks in advance,
  Bhavna.

  __________________________________________________________
  Be a better Globetrotter. Get better travel answers from someone who knows.
Yahoo! Answers - Check it out.
  http://answers.yahoo.com/dir/?link=list&sid=396545469

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






---------------------------------
  Download prohibited? No problem. CHAT from any browser, without download.

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

#607 From: Vijay Kansal <vijay_kansal2@...>
Date: Fri Jul 20, 2007 9:38 pm
Subject: Re: need help in javascript
vijay_kansal2
Send Email Send Email
 
Hi,


I think there is a unload event of the body you can try that.

bhavna patel <bhavna_coolinus@...> wrote:                                 
Hi ,

  Can any one tell me using which event we can know weather web page is going to
close.

  I need to refresh my page continuous on the server its containing some
background process, But when any one try to close this page I have make
confirmation before closin page, for this I got one solution that is if i use
onbeforeunload event of  <body>

  But my problem is if i call any function onbeforeunload i have to chek weather
page has been refreshed or closed. if refresh then let it be continuw but on
close i want to restrict the user.

  If need some help of javascript experts. please let me know if anybody can help
me out on this problem or any new suggetion other than onbeforeunload event.

  Thanks in advance,
  Bhavna.

  __________________________________________________________
  Be a better Globetrotter. Get better travel answers from someone who knows.
Yahoo! Answers - Check it out.
  http://answers.yahoo.com/dir/?link=list&sid=396545469

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






---------------------------------
Fussy? Opinionated? Impossible to please? Perfect.  Join Yahoo!'s user panel and
lay it on us.

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

#608 From: Anees <anees_muhd@...>
Date: Fri Jul 20, 2007 3:02 pm
Subject: Plz help / giv some resources about custom URL structure
anees_muhd
Send Email Send Email
 
Hi,

I implemented Wordpress for one of my client's site.

In its admin section they are giving an option to use Custom URL Structure

  Default
» http://www.test.com/blog/?p=123

Date and name based
» http://www.test.com/blog/2007/07/21/sample-post/

Numeric
» http://www.test.com/blog/archives/123

Dis are the methods they given

how does we implement dis....



i saw the same other kind f implementation in digg.com also

In dat site to call a Post named "Secret Buildings You May Not Photograph, Part
643"
they used a link like
http://digg.com/politics/Secret_Buildings_You_May_Not_Photograph_Part_643_2

Please tell me how we can implement dis
how can we manage dis

whether the whole string (Secret_Buildings_You_May_Not_Photograph_Part_643_2)
they might hav been take as a variable?

if i want to implement the same though PHP, can i go with any read url method to
get the value of dat?

Please Help




Regards
Anees Muhammed
___________






________________________________________________________________________________\
____
Building a website is a piece of cake. Yahoo! Small Business gives you all the
tools to get online.
http://smallbusiness.yahoo.com/webhosting

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

#609 From: Pritesh Loke <priteshloke@...>
Date: Mon Jul 23, 2007 12:31 pm
Subject: Problem in php and mysql
priteshloke
Send Email Send Email
 
Hello to all
            I have one field in my table precentage and data type in decimal(3,2)
but when i stored in that value like "45" they will storing the 9.99 can any
body what is the problem ? why mysql sql storing the 9.99 value.
pls any body tell me the solution ?

Thank you in advance


PML

---------------------------------
Yahoo! oneSearch: Finally,  mobile search that gives answers, not web links.

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

#610 From: "guruj_r" <guruj_r@...>
Date: Mon Jul 23, 2007 6:49 am
Subject: How to create tab pages in PHP
guruj_r
Send Email Send Email
 
Hi,

     I have a requirement to have two or more tabs in the website. So i
need help in creating it. It would be grateful if any one provides
useful information...

Regards,
Guru

#611 From: Koushik G raj <koushikgraj@...>
Date: Tue Jul 24, 2007 3:41 am
Subject: Re: How to create tab pages in PHP
koushikgraj
Send Email Send Email
 
hi,
what type of tables u need html or database?

guruj_r <guruj_r@...> wrote:                                  Hi,

  I have a requirement to have two or more tabs in the website. So i
  need help in creating it. It would be grateful if any one provides
  useful information...

  Regards,
  Guru






---------------------------------
  Why delete messages? Unlimited storage is just a click away.

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

#612 From: Anand Subramanian <axsubram@...>
Date: Tue Jul 24, 2007 10:53 am
Subject: Sample PHP Community sites
axsubram
Send Email Send Email
 
Hi,

Can you send  me some links of PHP sites (i.e.  commercial/any sites that have
been built using  php).

Mainly this is to get an idea about the capabilites and  what  can  be built
using PHP. Community/portal kind of sites would  be of great help

Thanks in advance for  any pointers.

Anand



________________________________________________________________________________\
____Ready for the edge of your seat?
Check out tonight's top picks on Yahoo! TV.
http://tv.yahoo.com/

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

Messages 583 - 612 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