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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 984 - 1013 of 1863   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#984 From: "Suketu S Parikh" <suketuparikh@...>
Date: Fri Feb 22, 2008 6:42 am
Subject: Re: Script for blocking prt screen action in IE
suketu_721982
Send Email Send Email
 
Hi Sandeep,

I believe that you can track print screen key and bypass the the print
screen function.

Regards,

Suketu Parikh


On Fri, Feb 22, 2008 at 11:49 AM, smangal09 <smangal09@...> wrote:

> Hello friends,
>
> Can any one provide me a script for blocking Print screen button
> action from the keyboard for internet explorer browser.
>
> Thanks
>
> Sandeep
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>


--
Suketu Parikh


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

#985 From: "kumar_namburu" <kumar_namburu@...>
Date: Tue Feb 26, 2008 3:01 pm
Subject: Adding Dynamic page in joomla
kumar_namburu
Send Email Send Email
 
hello Friends,

      If any body know how to added php code(Dynamic page) in
joomla,please help me.

Thanks and regards,
pradeep

#986 From: binoy <binoymvee@...>
Date: Tue Feb 26, 2008 5:49 pm
Subject: Re: Adding Dynamic page in joomla
binoymvee
Send Email Send Email
 
i think for that you have to write the as a component.
if any otherways ping send a message.


kumar_namburu <kumar_namburu@...> wrote:                              
hello Friends,

  If any body know how to added php code(Dynamic page) in
  joomla,please help me.

  Thanks and regards,
  pradeep






With Regards
   Binoy.M.V


---------------------------------
  5, 50, 500, 5000 - Store N number of mails in your inbox. Click here.

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

#987 From: binoy <binoymvee@...>
Date: Tue Feb 26, 2008 6:09 pm
Subject: Re: any help for choosing CMS
binoymvee
Send Email Send Email
 
hi ganu . there are many cms in php , joomal, drupa, typo3,qcms are soe of them
i worked on.
in this drupal depend on node as trees . joomla made up of modules and
componenets,
typo3  based on extension in this joomla will be the better one .i think that 
joomla's engine is simple than others.so we can learn it easily .

its from my experience.
if any one will get better aswer than mine then u can choose their advice.

thanks ganu
binoy



ganu.ullu@... wrote:                               hello team,

  I need to build something. But confused which CMS will be good.
  any idea, which one will be good from your experience.

  I have some options like Drupal,zoomla,php-nuke else TYPO3.

  any update for me, which one will be good from all the sides.

  ThnX. 10x.

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






With Regards
   Binoy.M.V


---------------------------------
  Bring your gang together - do your thing.  Start your group.

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

#988 From: binoy <binoymvee@...>
Date: Tue Feb 26, 2008 6:11 pm
Subject: Re: Script for blocking prt screen action in IE
binoymvee
Send Email Send Email
 
hi smangal
ids it possible to block print  screen through php ?

smangal09 <smangal09@...> wrote:                               Hello
friends,

  Can any one provide me a script for blocking Print screen button
  action from the keyboard for internet explorer browser.

  Thanks

  Sandeep






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]

#989 From: "ram" <mailtoramkumar@...>
Date: Wed Feb 27, 2008 9:07 am
Subject: fetching contents of a URL. Which function is good?
rmkmr79
Send Email Send Email
 
Hi,

Out of

fopen,
file_get_contents,
file,
fsockopen
using curl
.........
......

Which one is best to grab contents of a web page?

Ram

#990 From: "CS Shyam Sundar" <csshyamsundar@...>
Date: Wed Feb 27, 2008 11:21 am
Subject: Re: fetching contents of a URL. Which function is good?
ssundar85
Send Email Send Email
 
curl is the best.

On Wed, Feb 27, 2008 at 2:37 PM, ram <mailtoramkumar@...> wrote:

>   Hi,
>
> Out of
>
> fopen,
> file_get_contents,
> file,
> fsockopen
> using curl
> .........
> ......
>
> Which one is best to grab contents of a web page?
>
> Ram
>
>
>



--
Shyam Sundar

[mobile] +91-97877-SHYAM | [voip] +1-425-998-1134

"In our world of game and con: there is always an opponent and there is
always a victim. The trick: is to know when you're the latter, so you can
become the former."


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

#991 From: samaya <sampak23@...>
Date: Wed Feb 27, 2008 12:10 pm
Subject: Re: Script for blocking prt screen action in IE
sampak23
Send Email Send Email
 
function () {
shortcut = {
  'all_shortcuts':{},//All the shortcuts are stored in this array
  'add': function(shortcut_combination,callback,opt) {
   //Provide a set of default options
   var default_options = {
    'type':'keydown',
    'propagate':false,
    'disable_in_input':false,
    'target':document,
    'keycode':false
   }
   if(!opt) opt = default_options;
   else {
    for(var dfo in default_options) {
     if(typeof opt[dfo] == 'undefined') opt[dfo] = default_options[dfo];
    }
   }
   var ele = opt.target
   if(typeof opt.target == 'string') ele = document.getElementById(opt.target);
   var ths = this;
   shortcut_combination = shortcut_combination.toLowerCase();
   //The function to be called at keypress
   var func = function(e) {
    e = e || window.event;

    if(opt['disable_in_input']) { //Don't enable shortcut keys in Input, Textarea
fields
     var element;
     if(e.target) element=e.target;
     else if(e.srcElement) element=e.srcElement;
     if(element.nodeType==3) element=element.parentNode;
     if(element..tagName == 'INPUT' || element.tagName == 'TEXTAREA') return;
    }

    //Find Which key is pressed
    if (e.keyCode) code = e.keyCode;
    else if (e.which) code = e.which;
    var character = String.fromCharCode(code).toLowerCase();

    if(code == 188) character=","; //If the user presses , when the type is
onkeydown
    if(code == 190) character="."; //If the user presses , when the type is
onkeydown

    var keys = shortcut_combination.split("+");
    //Key Pressed - counts the number of valid keypresses - if it is same as the
number of keys, the shortcut function is invoked
    var kp = 0;

    //Work around for stupid Shift key bug created by using lowercase - as a
result the shift+num combination was broken
    var shift_nums = {
     "`":"~",
     "1":"!",
     "2":"@",
     "3":"#",
     "4":"$",
     "5":"%",
     "6":"^",
     "7":"&",
     "8":"*",
     "9":"(",
     "0":")",
     "-":"_",
     "=":"+",
     ";":":",
     "'":"\"",
     ",":"<",
     ".":">",
     "/":"?",
     "\\":"|"
    }
    //Special Keys - and their codes
    var special_keys = {
     'esc':27,
     'escape':27,
     'tab':9,
     'space':32,
     'return':13,
     'enter':13,
     'backspace':8,

     'scrolllock':145,
     'scroll_lock':145,
     'scroll':145,
     'capslock':20,
     'caps_lock':20,
     'caps':20,
     'numlock':144,
     'num_lock':144,
     'num':144,

     'pause':19,
     'break':19,

     'insert':45,
     'home':36,
     'delete':46,
     'end':35,

     'pageup':33,
     'page_up':33,
     'pu':33,

     'pagedown':34,
     'page_down':34,
     'pd':34,

     'left':37,
     'up':38,
     'right':39,
     'down':40,

     'f1':112,
     'f2':113,
     'f3':114,
     'f4':115,
     'f5':116,
     'f6':117,
     'f7':118,
     'f8':119,
     'f9':120,
     'f10':121,
     'f11':122,
     'f12':123
    }

    var modifiers = {
     shift: { wanted:false, pressed:false},
     ctrl : { wanted:false, pressed:false},
     alt  : { wanted:false, pressed:false},
     meta : { wanted:false, pressed:false} //Meta is Mac specific
    };

    if(e.ctrlKey) modifiers.ctrl.pressed = true;
    if(e.shiftKey) modifiers.shift.pressed = true;
    if(e.altKey) modifiers.alt.pressed = true;
    if(e.metaKey)   modifiers.meta.pressed = true;

    for(var i=0; k=keys[i],i<keys.length; i++) {
     //Modifiers
     if(k == 'ctrl' || k == 'control') {
      kp++;
      modifiers.ctrl.wanted = true;
     } else if(k == 'shift') {
      kp++;
      modifiers.shift.wanted = true;
     } else if(k == 'alt') {
      kp++;
      modifiers.alt.wanted = true;
     } else if(k == 'meta') {
      kp++;
      modifiers.meta.wanted = true;
     } else if(k.length > 1) { //If it is a special key
      if(special_keys[k] == code) kp++;

     } else if(opt['keycode']) {
      if(opt['keycode'] == code) kp++;
     } else { //The special keys did not match
      if(character == k) kp++;
      else {
       if(shift_nums[character] && e.shiftKey) { //Stupid Shift key bug created
by using lowercase
        character = shift_nums[character];
        if(character == k) kp++;
       }
      }
     }
    }
    if(kp == keys.length &&
       modifiers.ctrl.pressed == modifiers.ctrl.wanted &&
       modifiers.shift.pressed == modifiers.shift.wanted &&
       modifiers.alt.pressed == modifiers.alt.wanted &&
       modifiers.meta.pressed == modifiers.meta.wanted) {
     callback(e);

     if(!opt['propagate']) { //Stop the event
      //e.cancelBubble is supported by IE - this will kill the bubbling process.
      e.cancelBubble = true;
      e.returnValue = false;

      //e.stopPropagation works in Firefox.
      if (e.stopPropagation) {
       e.stopPropagation();
       e.preventDefault();
      }
      return false;
     }
    }
   }
   this.all_shortcuts[shortcut_combination] = {
    'callback':func,
    'target':ele,
    'event': opt['type']
   };
   //Attach the function with the event
   if(ele.addEventListener) ele.addEventListener(opt['type'], func, false);
   else if(ele.attachEvent) ele.attachEvent('on'+opt['type'], func);
   else ele['on'+opt['type']] = func;
  },
  //Remove the shortcut - just specify the shortcut and I will remove the binding
  'remove':function(shortcut_combination) {
   shortcut_combination = shortcut_combination.toLowerCase();
   var binding = this.all_shortcuts[shortcut_combination];
   delete(this.all_shortcuts[shortcut_combination])
   if(!binding) return;
   var type = binding['event'];
   var ele = binding['target'];
   var callback = binding['callback'];
   if(ele.detachEvent) ele.detachEvent('on'+type, callback);
   else if(ele.removeEventListener) ele.removeEventListener(type, callback,
false);
   else ele['on'+type] = false;
  }
}
shortcut.add("Ctrl+a",function() {
  return(false);
});


----- Original Message ----
From: binoy <binoymvee@...>
To: bang-phpug@yahoogroups.com
Cc: smangal09@...
Sent: Tuesday, 26 February, 2008 11:41:49 PM
Subject: Re: [bang-phpug] Script for blocking prt screen action in IE

hi smangal
ids it possible to block print screen through php ?

smangal09 <smangal09@yahoo. co.in> wrote: Hello friends,

Can any one provide me a script for blocking Print screen button
action from the keyboard for internet explorer browser.

Thanks

Sandeep





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]





       Why delete messages? Unlimited storage is just a click away. Go to
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html

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

#992 From: "thisistrinath" <thisistrinath@...>
Date: Thu Feb 28, 2008 2:12 am
Subject: Re: fetching contents of a URL. Which function is good?
thisistrinath
Send Email Send Email
 
If you want simplicity, use file_get_contents("url")
If you want speed and efficiency use CURL

#993 From: "Harsha M V" <hmvrulz@...>
Date: Thu Feb 28, 2008 2:50 am
Subject: Re: Re: fetching contents of a URL. Which function is good?
hmvgprs
Send Email Send Email
 
is there possible to fetch only parts of the page also ?
say for example just the stock qoutes figures ?

On Thu, Feb 28, 2008 at 7:42 AM, thisistrinath <thisistrinath@...>
wrote:

>   If you want simplicity, use file_get_contents("url")
> If you want speed and efficiency use CURL
>
>
>



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


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

#994 From: samaya <sampak23@...>
Date: Thu Feb 28, 2008 5:46 am
Subject: Re: Script for blocking prt screen action in IE
sampak23
Send Email Send Email
 
hi
i am not clear abt this,but some wht it will hepls u.. use this function and
call it in the page where u dont want the print screen to be pressed.

----- Original Message ----
From: samaya <sampak23@...>
To: bang-phpug@yahoogroups.com
Sent: Wednesday, 27 February, 2008 5:40:17 PM
Subject: Re: [bang-phpug] Script for blocking prt screen action in IE



function () {
shortcut = {
'all_shortcuts' :{},//All the shortcuts are stored in this array
'add': function(shortcut_ combination, callback, opt) {
//Provide a set of default options
var default_options = {
'type':'keydown' ,
'propagate': false,
'disable_in_ input':false,
'target':document,
'keycode':false
}
if(!opt) opt = default_options;
else {
for(var dfo in default_options) {
if(typeof opt[dfo] == 'undefined') opt[dfo] = default_options[ dfo];
}
}
var ele = opt.target
if(typeof opt.target == 'string') ele = document.getElement ById(opt. target);
var ths = this;
shortcut_combinatio n = shortcut_combinatio n.toLowerCase( );
//The function to be called at keypress
var func = function(e) {
e = e || window.event;

if(opt['disable_ in_input' ]) { //Don't enable shortcut keys in Input, Textarea
fields
var element;
if(e.target) element=e.target;
else if(e.srcElement) element=e.srcElemen t;
if(element.nodeType ==3) element=element. parentNode;
if(element.. tagName == 'INPUT' || element.tagName == 'TEXTAREA') return;
}

//Find Which key is pressed
if (e.keyCode) code = e.keyCode;
else if (e.which) code = e.which;
var character = String.fromCharCode (code).toLowerCa se();

if(code == 188) character=", "; //If the user presses , when the type is
onkeydown
if(code == 190) character=". "; //If the user presses , when the type is
onkeydown

var keys = shortcut_combinatio n.split(" +");
//Key Pressed - counts the number of valid keypresses - if it is same as the
number of keys, the shortcut function is invoked
var kp = 0;

//Work around for stupid Shift key bug created by using lowercase - as a result
the shift+num combination was broken
var shift_nums = {
"`":"~",
"1":"!",
"2":"@",
"3":"#",
"4":"$",
"5":"%",
"6":"^",
"7":"&",
"8":"*",
"9":"(",
"0":")",
"-":"_",
"=":"+",
";":":",
"'":"\"",
",":"<",
".":">",
"/":"?",
"\\":"|"
}
//Special Keys - and their codes
var special_keys = {
'esc':27,
'escape':27,
'tab':9,
'space':32,
'return':13,
'enter':13,
'backspace': 8,

'scrolllock' :145,
'scroll_lock' :145,
'scroll':145,
'capslock':20,
'caps_lock': 20,
'caps':20,
'numlock':144,
'num_lock':144,
'num':144,

'pause':19,
'break':19,

'insert':45,
'home':36,
'delete':46,
'end':35,

'pageup':33,
'page_up':33,
'pu':33,

'pagedown':34,
'page_down': 34,
'pd':34,

'left':37,
'up':38,
'right':39,
'down':40,

'f1':112,
'f2':113,
'f3':114,
'f4':115,
'f5':116,
'f6':117,
'f7':118,
'f8':119,
'f9':120,
'f10':121,
'f11':122,
'f12':123
}

var modifiers = {
shift: { wanted:false, pressed:false} ,
ctrl : { wanted:false, pressed:false} ,
alt : { wanted:false, pressed:false} ,
meta : { wanted:false, pressed:false} //Meta is Mac specific
};

if(e.ctrlKey) modifiers.ctrl. pressed = true;
if(e.shiftKey) modifiers.shift. pressed = true;
if(e.altKey) modifiers.alt. pressed = true;
if(e.metaKey) modifiers.meta. pressed = true;

for(var i=0; k=keys[i],i< keys.length; i++) {
//Modifiers
if(k == 'ctrl' || k == 'control') {
kp++;
modifiers.ctrl. wanted = true;
} else if(k == 'shift') {
kp++;
modifiers.shift. wanted = true;
} else if(k == 'alt') {
kp++;
modifiers.alt. wanted = true;
} else if(k == 'meta') {
kp++;
modifiers.meta. wanted = true;
} else if(k.length > 1) { //If it is a special key
if(special_keys[ k] == code) kp++;

} else if(opt['keycode' ]) {
if(opt['keycode' ] == code) kp++;
} else { //The special keys did not match
if(character == k) kp++;
else {
if(shift_nums[ character] && e.shiftKey) { //Stupid Shift key bug created by
using lowercase
character = shift_nums[characte r];
if(character == k) kp++;
}
}
}
}
if(kp == keys.length &&
modifiers.ctrl. pressed == modifiers.ctrl. wanted &&
modifiers.shift. pressed == modifiers.shift. wanted &&
modifiers.alt. pressed == modifiers.alt. wanted &&
modifiers.meta. pressed == modifiers.meta. wanted) {
callback(e);

if(!opt['propagate' ]) { //Stop the event
//e.cancelBubble is supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
e.returnValue = false;

//e.stopPropagation works in Firefox.
if (e.stopPropagation) {
e.stopPropagation( );
e.preventDefault( );
}
return false;
}
}
}
this.all_shortcuts[ shortcut_ combination] = {
'callback':func,
'target':ele,
'event': opt['type']
};
//Attach the function with the event
if(ele.addEventList ener) ele.addEventListene r(opt['type' ], func, false);
else if(ele.attachEvent) ele.attachEvent( 'on'+opt[ 'type'], func);
else ele['on'+opt[ 'type']] = func;
},
//Remove the shortcut - just specify the shortcut and I will remove the binding
'remove':function( shortcut_ combination) {
shortcut_combinatio n = shortcut_combinatio n.toLowerCase( );
var binding = this.all_shortcuts[ shortcut_ combination] ;
delete(this. all_shortcuts[ shortcut_ combination] )
if(!binding) return;
var type = binding['event' ];
var ele = binding['target' ];
var callback = binding['callback' ];
if(ele.detachEvent) ele.detachEvent( 'on'+type, callback);
else if(ele.removeEventL istener) ele.removeEventList ener(type, callback,
false);
else ele['on'+type] = false;
}
}
shortcut.add( "Ctrl+a", function( ) {
return(false) ;
});

----- Original Message ----
From: binoy <binoymvee@yahoo. co.in>
To: bang-phpug@yahoogro ups.com
Cc: smangal09@yahoo. co.in
Sent: Tuesday, 26 February, 2008 11:41:49 PM
Subject: Re: [bang-phpug] Script for blocking prt screen action in IE

hi smangal
ids it possible to block print screen through php ?

smangal09 <smangal09@yahoo. co.in> wrote: Hello friends,

Can any one provide me a script for blocking Print screen button
action from the keyboard for internet explorer browser.

Thanks

Sandeep

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]

Why delete messages? Unlimited storage is just a click away. Go to http://help.
yahoo.com/ l/in/yahoo/ mail/yahoomail/ tools/tools- 08.html

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





       Unlimited freedom, unlimited storage. Get it now, on
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

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

#995 From: binoy <binoymvee@...>
Date: Thu Feb 28, 2008 1:16 pm
Subject: Re: Script for blocking prt screen action in IE
binoymvee
Send Email Send Email
 
can u tell me which function i have to call .
function() ?
sorry for this question ,i actually didn;t get  abt this function thats why
plzzzz

samaya <sampak23@...> wrote:
  hi
  i am not clear abt this,but some wht it will hepls u.. use this function and
call it in the page where u dont want the print screen to be pressed.

  ----- Original Message ----
  From: samaya <sampak23@...>
  To: bang-phpug@yahoogroups.com
  Sent: Wednesday, 27 February, 2008 5:40:17 PM
  Subject: Re: [bang-phpug] Script for blocking prt screen action in IE

  function () {
  shortcut = {
  'all_shortcuts' :{},//All the shortcuts are stored in this array
  'add': function(shortcut_ combination, callback, opt) {
  //Provide a set of default options
  var default_options = {
  'type':'keydown' ,
  'propagate': false,
  'disable_in_ input':false,
  'target':document,
  'keycode':false
  }
  if(!opt) opt = default_options;
  else {
  for(var dfo in default_options) {
  if(typeof opt[dfo] == 'undefined') opt[dfo] = default_options[ dfo];
  }
  }
  var ele = opt.target
  if(typeof opt.target == 'string') ele = document.getElement ById(opt. target);
  var ths = this;
  shortcut_combinatio n = shortcut_combinatio n.toLowerCase( );
  //The function to be called at keypress
  var func = function(e) {
  e = e || window.event;

  if(opt['disable_ in_input' ]) { //Don't enable shortcut keys in Input, Textarea
fields
  var element;
  if(e.target) element=e.target;
  else if(e.srcElement) element=e.srcElemen t;
  if(element.nodeType ==3) element=element. parentNode;
  if(element.. tagName == 'INPUT' || element.tagName == 'TEXTAREA') return;
  }

  //Find Which key is pressed
  if (e.keyCode) code = e.keyCode;
  else if (e.which) code = e.which;
  var character = String.fromCharCode (code).toLowerCa se();

  if(code == 188) character=", "; //If the user presses , when the type is
onkeydown
  if(code == 190) character=". "; //If the user presses , when the type is
onkeydown

  var keys = shortcut_combinatio n.split(" +");
  //Key Pressed - counts the number of valid keypresses - if it is same as the
number of keys, the shortcut function is invoked
  var kp = 0;

  //Work around for stupid Shift key bug created by using lowercase - as a result
the shift+num combination was broken
  var shift_nums = {
  "`":"~",
  "1":"!",
  "2":"@",
  "3":"#",
  "4":"$",
  "5":"%",
  "6":"^",
  "7":"&",
  "8":"*",
  "9":"(",
  "0":")",
  "-":"_",
  "=":"+",
  ";":":",
  "'":"\"",
  ",":"<",
  ".":">",
  "/":"?",
  "\\":"|"
  }
  //Special Keys - and their codes
  var special_keys = {
  'esc':27,
  'escape':27,
  'tab':9,
  'space':32,
  'return':13,
  'enter':13,
  'backspace': 8,

  'scrolllock' :145,
  'scroll_lock' :145,
  'scroll':145,
  'capslock':20,
  'caps_lock': 20,
  'caps':20,
  'numlock':144,
  'num_lock':144,
  'num':144,

  'pause':19,
  'break':19,

  'insert':45,
  'home':36,
  'delete':46,
  'end':35,

  'pageup':33,
  'page_up':33,
  'pu':33,

  'pagedown':34,
  'page_down': 34,
  'pd':34,

  'left':37,
  'up':38,
  'right':39,
  'down':40,

  'f1':112,
  'f2':113,
  'f3':114,
  'f4':115,
  'f5':116,
  'f6':117,
  'f7':118,
  'f8':119,
  'f9':120,
  'f10':121,
  'f11':122,
  'f12':123
  }

  var modifiers = {
  shift: { wanted:false, pressed:false} ,
  ctrl : { wanted:false, pressed:false} ,
  alt : { wanted:false, pressed:false} ,
  meta : { wanted:false, pressed:false} //Meta is Mac specific
  };

  if(e.ctrlKey) modifiers.ctrl. pressed = true;
  if(e.shiftKey) modifiers.shift. pressed = true;
  if(e.altKey) modifiers.alt. pressed = true;
  if(e.metaKey) modifiers.meta. pressed = true;

  for(var i=0; k=keys[i],i< keys.length; i++) {
  //Modifiers
  if(k == 'ctrl' || k == 'control') {
  kp++;
  modifiers.ctrl. wanted = true;
  } else if(k == 'shift') {
  kp++;
  modifiers.shift. wanted = true;
  } else if(k == 'alt') {
  kp++;
  modifiers.alt. wanted = true;
  } else if(k == 'meta') {
  kp++;
  modifiers.meta. wanted = true;
  } else if(k.length > 1) { //If it is a special key
  if(special_keys[ k] == code) kp++;

  } else if(opt['keycode' ]) {
  if(opt['keycode' ] == code) kp++;
  } else { //The special keys did not match
  if(character == k) kp++;
  else {
  if(shift_nums[ character] && e.shiftKey) { //Stupid Shift key bug created by
using lowercase
  character = shift_nums[characte r];
  if(character == k) kp++;
  }
  }
  }
  }
  if(kp == keys.length &&
  modifiers.ctrl. pressed == modifiers.ctrl. wanted &&
  modifiers.shift. pressed == modifiers.shift. wanted &&
  modifiers.alt. pressed == modifiers.alt. wanted &&
  modifiers.meta. pressed == modifiers.meta. wanted) {
  callback(e);

  if(!opt['propagate' ]) { //Stop the event
  //e.cancelBubble is supported by IE - this will kill the bubbling process.
  e.cancelBubble = true;
  e.returnValue = false;

  //e.stopPropagation works in Firefox.
  if (e.stopPropagation) {
  e.stopPropagation( );
  e.preventDefault( );
  }
  return false;
  }
  }
  }
  this.all_shortcuts[ shortcut_ combination] = {
  'callback':func,
  'target':ele,
  'event': opt['type']
  };
  //Attach the function with the event
  if(ele.addEventList ener) ele.addEventListene r(opt['type' ], func, false);
  else if(ele.attachEvent) ele.attachEvent( 'on'+opt[ 'type'], func);
  else ele['on'+opt[ 'type']] = func;
  },
  //Remove the shortcut - just specify the shortcut and I will remove the binding
  'remove':function( shortcut_ combination) {
  shortcut_combinatio n = shortcut_combinatio n.toLowerCase( );
  var binding = this.all_shortcuts[ shortcut_ combination] ;
  delete(this. all_shortcuts[ shortcut_ combination] )
  if(!binding) return;
  var type = binding['event' ];
  var ele = binding['target' ];
  var callback = binding['callback' ];
  if(ele.detachEvent) ele.detachEvent( 'on'+type, callback);
  else if(ele.removeEventL istener) ele.removeEventList ener(type, callback,
false);
  else ele['on'+type] = false;
  }
  }
  shortcut.add( "Ctrl+a", function( ) {
  return(false) ;
  });

  ----- Original Message ----
  From: binoy <binoymvee@yahoo. co.in>
  To: bang-phpug@yahoogro ups.com
  Cc: smangal09@yahoo. co.in
  Sent: Tuesday, 26 February, 2008 11:41:49 PM
  Subject: Re: [bang-phpug] Script for blocking prt screen action in IE

  hi smangal
  ids it possible to block print screen through php ?

  smangal09 <smangal09@yahoo. co.in> wrote: Hello friends,

  Can any one provide me a script for blocking Print screen button
  action from the keyboard for internet explorer browser.

  Thanks

  Sandeep

  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]

  Why delete messages? Unlimited storage is just a click away. Go to http://help.
yahoo.com/ l/in/yahoo/ mail/yahoomail/ tools/tools- 08.html

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

  Unlimited freedom, unlimited storage. Get it now, on
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

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






With Regards
   Binoy.M.V


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

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

#996 From: "thisistrinath" <thisistrinath@...>
Date: Fri Feb 29, 2008 2:30 am
Subject: Re: fetching contents of a URL. Which function is good?
thisistrinath
Send Email Send Email
 
You can do this if you know exactly from which byte to which byte is
the data you want to fetch and you also have to be sure that this
doesn't change over time. Say, of the 30000 bytes of data in a
webpage, your stock data lies from byte 400 to 1000 then you can
specify that in the option called RANGE for CURL.
I saw many posts like
http://curl.haxx.se/docs/manpage.html
http://www.ibm.com/developerworks/library/os-php-readfiles/index.html
http://www.w3schools.com/php/php_ref_filesystem.asp

#997 From: samaya <sampak23@...>
Date: Sat Mar 1, 2008 9:19 am
Subject: Re: Script for blocking prt screen action in IE
sampak23
Send Email Send Email
 
place the script in a javascript function where u want to disable the print
screen and call the function from that page itsels.
regards
samaya


----- Original Message ----
From: binoy <binoymvee@...>
To: bang-phpug@yahoogroups.com
Sent: Thursday, 28 February, 2008 6:46:44 PM
Subject: Re: [bang-phpug] Script for blocking prt screen action in IE

can u tell me which function i have to call .
function() ?
sorry for this question ,i actually didn;t get abt this function thats why
plzzzz

samaya <sampak23@yahoo. co.in> wrote:
hi
i am not clear abt this,but some wht it will hepls u.. use this function and
call it in the page where u dont want the print screen to be pressed.

----- Original Message ----
From: samaya <sampak23@yahoo. co.in>
To: bang-phpug@yahoogro ups.com
Sent: Wednesday, 27 February, 2008 5:40:17 PM
Subject: Re: [bang-phpug] Script for blocking prt screen action in IE

function () {
shortcut = {
'all_shortcuts' :{},//All the shortcuts are stored in this array
'add': function(shortcut_ combination, callback, opt) {
//Provide a set of default options
var default_options = {
'type':'keydown' ,
'propagate': false,
'disable_in_ input':false,
'target':document,
'keycode':false
}
if(!opt) opt = default_options;
else {
for(var dfo in default_options) {
if(typeof opt[dfo] == 'undefined') opt[dfo] = default_options[ dfo];
}
}
var ele = opt.target
if(typeof opt.target == 'string') ele = document.getElement ById(opt. target);
var ths = this;
shortcut_combinatio n = shortcut_combinatio n.toLowerCase( );
//The function to be called at keypress
var func = function(e) {
e = e || window.event;

if(opt['disable_ in_input' ]) { //Don't enable shortcut keys in Input, Textarea
fields
var element;
if(e.target) element=e.target;
else if(e.srcElement) element=e.srcElemen t;
if(element.nodeType ==3) element=element. parentNode;
if(element.. tagName == 'INPUT' || element.tagName == 'TEXTAREA') return;
}

//Find Which key is pressed
if (e.keyCode) code = e.keyCode;
else if (e.which) code = e.which;
var character = String.fromCharCode (code).toLowerCa se();

if(code == 188) character=", "; //If the user presses , when the type is
onkeydown
if(code == 190) character=". "; //If the user presses , when the type is
onkeydown

var keys = shortcut_combinatio n.split(" +");
//Key Pressed - counts the number of valid keypresses - if it is same as the
number of keys, the shortcut function is invoked
var kp = 0;

//Work around for stupid Shift key bug created by using lowercase - as a result
the shift+num combination was broken
var shift_nums = {
"`":"~",
"1":"!",
"2":"@",
"3":"#",
"4":"$",
"5":"%",
"6":"^",
"7":"&",
"8":"*",
"9":"(",
"0":")",
"-":"_",
"=":"+",
";":":",
"'":"\"",
",":"<",
".":">",
"/":"?",
"\\":"|"
}
//Special Keys - and their codes
var special_keys = {
'esc':27,
'escape':27,
'tab':9,
'space':32,
'return':13,
'enter':13,
'backspace': 8,

'scrolllock' :145,
'scroll_lock' :145,
'scroll':145,
'capslock':20,
'caps_lock': 20,
'caps':20,
'numlock':144,
'num_lock':144,
'num':144,

'pause':19,
'break':19,

'insert':45,
'home':36,
'delete':46,
'end':35,

'pageup':33,
'page_up':33,
'pu':33,

'pagedown':34,
'page_down': 34,
'pd':34,

'left':37,
'up':38,
'right':39,
'down':40,

'f1':112,
'f2':113,
'f3':114,
'f4':115,
'f5':116,
'f6':117,
'f7':118,
'f8':119,
'f9':120,
'f10':121,
'f11':122,
'f12':123
}

var modifiers = {
shift: { wanted:false, pressed:false} ,
ctrl : { wanted:false, pressed:false} ,
alt : { wanted:false, pressed:false} ,
meta : { wanted:false, pressed:false} //Meta is Mac specific
};

if(e.ctrlKey) modifiers.ctrl. pressed = true;
if(e.shiftKey) modifiers.shift. pressed = true;
if(e.altKey) modifiers.alt. pressed = true;
if(e.metaKey) modifiers.meta. pressed = true;

for(var i=0; k=keys[i],i< keys.length; i++) {
//Modifiers
if(k == 'ctrl' || k == 'control') {
kp++;
modifiers.ctrl. wanted = true;
} else if(k == 'shift') {
kp++;
modifiers.shift. wanted = true;
} else if(k == 'alt') {
kp++;
modifiers.alt. wanted = true;
} else if(k == 'meta') {
kp++;
modifiers.meta. wanted = true;
} else if(k.length > 1) { //If it is a special key
if(special_keys[ k] == code) kp++;

} else if(opt['keycode' ]) {
if(opt['keycode' ] == code) kp++;
} else { //The special keys did not match
if(character == k) kp++;
else {
if(shift_nums[ character] && e.shiftKey) { //Stupid Shift key bug created by
using lowercase
character = shift_nums[characte r];
if(character == k) kp++;
}
}
}
}
if(kp == keys.length &&
modifiers.ctrl. pressed == modifiers.ctrl. wanted &&
modifiers.shift. pressed == modifiers.shift. wanted &&
modifiers.alt. pressed == modifiers.alt. wanted &&
modifiers.meta. pressed == modifiers.meta. wanted) {
callback(e);

if(!opt['propagate' ]) { //Stop the event
//e.cancelBubble is supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
e.returnValue = false;

//e.stopPropagation works in Firefox.
if (e.stopPropagation) {
e.stopPropagation( );
e.preventDefault( );
}
return false;
}
}
}
this.all_shortcuts[ shortcut_ combination] = {
'callback':func,
'target':ele,
'event': opt['type']
};
//Attach the function with the event
if(ele.addEventList ener) ele.addEventListene r(opt['type' ], func, false);
else if(ele.attachEvent) ele.attachEvent( 'on'+opt[ 'type'], func);
else ele['on'+opt[ 'type']] = func;
},
//Remove the shortcut - just specify the shortcut and I will remove the binding
'remove':function( shortcut_ combination) {
shortcut_combinatio n = shortcut_combinatio n.toLowerCase( );
var binding = this.all_shortcuts[ shortcut_ combination] ;
delete(this. all_shortcuts[ shortcut_ combination] )
if(!binding) return;
var type = binding['event' ];
var ele = binding['target' ];
var callback = binding['callback' ];
if(ele.detachEvent) ele.detachEvent( 'on'+type, callback);
else if(ele.removeEventL istener) ele.removeEventList ener(type, callback,
false);
else ele['on'+type] = false;
}
}
shortcut.add( "Ctrl+a", function( ) {
return(false) ;
});

----- Original Message ----
From: binoy <binoymvee@yahoo. co.in>
To: bang-phpug@yahoogro ups.com
Cc: smangal09@yahoo. co.in
Sent: Tuesday, 26 February, 2008 11:41:49 PM
Subject: Re: [bang-phpug] Script for blocking prt screen action in IE

hi smangal
ids it possible to block print screen through php ?

smangal09 <smangal09@yahoo. co.in> wrote: Hello friends,

Can any one provide me a script for blocking Print screen button
action from the keyboard for internet explorer browser.

Thanks

Sandeep

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]

Why delete messages? Unlimited storage is just a click away. Go to http://help.
yahoo.com/ l/in/yahoo/ mail/yahoomail/ tools/tools- 08.html

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

Unlimited freedom, unlimited storage. Get it now, on http://help. yahoo.com/
l/in/yahoo/ mail/yahoomail/ tools/tools- 08.html/

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





With Regards
Binoy.M.V


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

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





       Forgot the famous last words? Access your message archive online at
http://in.messenger.yahoo.com/webmessengerpromo.php

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

#998 From: "piyush_25378" <piyush_25378@...>
Date: Wed Mar 12, 2008 10:04 am
Subject: converting pdf to flash with php
piyush_25378
Send Email Send Email
 
Hi All

I have a requirement that involves converting the pdf file to flash.
can any one tell me how it is possible in php?

Thanks

#999 From: "ram" <mailtoramkumar@...>
Date: Mon Mar 10, 2008 7:49 am
Subject: Re: Security Measures in PHP projects
rmkmr79
Send Email Send Email
 
Hi Friends,

Why no response to this post??
wake up........!!  :)


--- In bang-phpug@yahoogroups.com, "ram" <mailtoramkumar@...> wrote:
>
> Hi Friends,
>
> What are different security measures you take care in the projects you
> are dealing with? It can be simple spam filters, header injection,
> intrusion detection etc.
>
> Please reply with any available libraries for it..
>
> Ram
>

#1000 From: ganu.ullu@...
Date: Wed Mar 12, 2008 5:05 pm
Subject: Re: Re: Security Measures in PHP projects
dave.ankur
Send Email Send Email
 
Hello,

when we talk about security, then we have so many points to discuss.

- encryption / decryption
- spoofing
- cross-site scripting
- XSS attack
- SQL Injection
- Session Fixation
- Hacking SSL
- using GPG for your mails and uploads.
- input filtration.

This is what I found and some time I take care.

what about if some one can add more. :)

--

On Mon, Mar 10, 2008 at 1:19 PM, ram <mailtoramkumar@...> wrote:

>   Hi Friends,
>
> Why no response to this post??
> wake up........!! :)
>
>
> --- In bang-phpug@yahoogroups.com <bang-phpug%40yahoogroups.com>, "ram"
> <mailtoramkumar@...> wrote:
> >
> > Hi Friends,
> >
> > What are different security measures you take care in the projects you
> > are dealing with? It can be simple spam filters, header injection,
> > intrusion detection etc.
> >
> > Please reply with any available libraries for it..
> >
> > Ram
> >
>
>
>


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

#1001 From: "Vinu Thomas" <vinuthomas@...>
Date: Thu Mar 13, 2008 2:48 am
Subject: Re: Re: Security Measures in PHP projects
uglyftp
Send Email Send Email
 
Try PHP IDS for some of your security measures :

"Currently the PHPIDS detects all sorts of XSS, SQL Injection, header
injection, directory traversal, RFE/LFI, DoS and LDAP attacks. Through
special conversion algorithms the PHPIDS is even able to detect
heavily obfuscated attacks - this covers several charsets, entities of
all forms, comment obfuscation, obfuscation through concatenation,
shell code and many other variants."

Link:  http://php-ids.org/

Regards,
Vinu

On Wed, Mar 12, 2008 at 10:35 PM, <ganu.ullu@...> wrote:

> Hello,
>
> when we talk about security, then we have so many points to discuss.
>
> - encryption / decryption
> - spoofing
> - cross-site scripting
> - XSS attack
> - SQL Injection
> - Session Fixation
> - Hacking SSL
> - using GPG for your mails and uploads.
> - input filtration.
>
> This is what I found and some time I take care.
>
> what about if some one can add more. :)
>
> --
>
> On Mon, Mar 10, 2008 at 1:19 PM, ram <mailtoramkumar@...> wrote:
>
> > Hi Friends,
> >
> > Why no response to this post??
> > wake up........!! :)
> >
> >
> > --- In bang-phpug@yahoogroups.com <bang-phpug%40yahoogroups.com>, "ram"
> > <mailtoramkumar@...> wrote:
> > >
> > > Hi Friends,
> > >
> > > What are different security measures you take care in the projects you
> > > are dealing with? It can be simple spam filters, header injection,
> > > intrusion detection etc.
> > >
> > > Please reply with any available libraries for it..
> > >
> > > Ram

#1002 From: mohan doss <mmohandoss_m@...>
Date: Sat Mar 15, 2008 12:06 pm
Subject: PDF with form generation using PHP4
mmohandoss_m
Send Email Send Email
 
Dear All,

Can you please throw some light on how to create PDFs with form in PHP4?

Thanks in advance,
Mohandoss.


---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.

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

#1003 From: "Vinu Thomas" <vinuthomas@...>
Date: Sun Mar 16, 2008 5:44 am
Subject: Re: PDF with form generation using PHP4
uglyftp
Send Email Send Email
 
Hi Mohandoss,
You could look at using FDPF which works on PHP4. The link to the FPDF
site is http://www.fpdf.org/.

Regards,
Vinu
--------------------------------
blogs.vinuthomas.com

On Sat, Mar 15, 2008 at 5:36 PM, mohan doss <mmohandoss_m@...> wrote:
>
>
>
>
>
>
> Dear All,
>
>  Can you please throw some light on how to create PDFs with form in PHP4?
>
>  Thanks in advance,
>  Mohandoss.
>
>  ---------------------------------
>  Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it
> now.
>

#1004 From: "CS Shyam Sundar" <csshyamsundar@...>
Date: Mon Mar 17, 2008 5:07 am
Subject: Re: PDF with form generation using PHP4
ssundar85
Send Email Send Email
 
Try clibpdf ( http://in2.php.net/cpdf ) or PDFLib ( recommended ) (
http://in2.php.net/manual/en/ref.pdf.php ) ...

I heard Haru ( http://in2.php.net/manual/en/ref.haru.php ) is also good, but
mind - its experimental.

--
Shyam Sundar

[mobile] +91-97877-SHYAM | [voip] +1-425-998-1134

"In our world of game and con: there is always an opponent and there is
always a victim. The trick: is to know when you're the latter, so you can
become the former."


On Sat, Mar 15, 2008 at 5:36 PM, mohan doss <mmohandoss_m@...> wrote:

>   Dear All,
>
> Can you please throw some light on how to create PDFs with form in PHP4?
>
> Thanks in advance,
> Mohandoss.
>
> ---------------------------------
> Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it
> now.
>
> [Non-text portions of this message have been removed]
>
>
>


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

#1005 From: mohan doss <mmohandoss_m@...>
Date: Mon Mar 17, 2008 6:09 am
Subject: Re: PDF with form generation using PHP4
mmohandoss_m
Send Email Send Email
 
Thanks Vinu.

   Regards,
   Mohandoss.

Vinu Thomas <vinuthomas@...> wrote:
           Hi Mohandoss,
You could look at using FDPF which works on PHP4. The link to the FPDF
site is http://www.fpdf.org/.

Regards,
Vinu
--------------------------------
blogs.vinuthomas.com

On Sat, Mar 15, 2008 at 5:36 PM, mohan doss <mmohandoss_m@...> wrote:
>
>
>
>
>
>
> Dear All,
>
> Can you please throw some light on how to create PDFs with form in PHP4?
>
> Thanks in advance,
> Mohandoss.
>
> ---------------------------------
> Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it
> now.
>





---------------------------------
Looking for last minute shopping deals?  Find them fast with Yahoo! Search.

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

#1006 From: "thisistrinath" <thisistrinath@...>
Date: Tue Mar 18, 2008 4:33 am
Subject: PHP-Unicode help
thisistrinath
Send Email Send Email
 
Can you tell me of any built in function or any technique that can
give me Unicode number for any character either in decimal or
hexadecimal using PHP?
Suppose I have a Chinese character, then I ask that function or
something to give me number equivalent and it gives me like 1234(dec)
or 12ee(hex). I need it for an algorithm as numbers are much more
easier to handle or to do binary search than chars.
Please tell whatever you know.
Thank you

#1007 From: "Vinu Thomas" <vinuthomas@...>
Date: Wed Mar 19, 2008 4:55 am
Subject: Re: PHP-Unicode help
uglyftp
Send Email Send Email
 
I'm not sure if this will help, but check out these links:
http://hsivonen.iki.fi/php-utf8/
http://www.ordisante.com/2008/01/16/php-convert-utf-8-to-hex-codepoint-values-un\
icode-hexidecimal.html

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

On Tue, Mar 18, 2008 at 10:03 AM, thisistrinath <thisistrinath@...>
wrote:

>   Can you tell me of any built in function or any technique that can
> give me Unicode number for any character either in decimal or
> hexadecimal using PHP?
> Suppose I have a Chinese character, then I ask that function or
> something to give me number equivalent and it gives me like 1234(dec)
> or 12ee(hex). I need it for an algorithm as numbers are much more
> easier to handle or to do binary search than chars.
> Please tell whatever you know.
> Thank you
>
>
>


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

#1008 From: "ambatisreedhar" <ambatisreedhar@...>
Date: Wed Mar 19, 2008 7:57 am
Subject: getting errors with Apache installation.
ambatisreedhar
Send Email Send Email
 
Hi friends,

I am new to PHP.
I started installing Apache server.

Then I visited this page: http://localhost:8080/

Then I got this error:
"
(OS 10048)Only one usage of each socket address (protocol/network
address/port) is normally permitted.

: make_sock: could not bind to address 0.0.0.0:8080
no listening sockets available, shutting down
Unable to open logs
Note the errors or messages above, and press the <ESC> key to exit.
18..."

I tried to change httpd.conf file to 8085

Now I am getting this annoying message:

"It works" message is showing on the web page when I am trying to
access this URL: http://localhost:8085/

Please suggest me to solve these problems.
Can you tell me the steps in installation?

I followed this
article "http://www.expertsrt.com/tutorials/Matt/install-apache.html"
for the installation.

This is my id: ambatisreedhar@... or ambatisreedhar@...

Regards,
Sreedhar A

#1009 From: ganu <ganu.ullu@...>
Date: Thu Mar 20, 2008 11:10 pm
Subject: Re: getting errors with Apache installation.
dave.ankur
Send Email Send Email
 
hello,

the basic reason for that error is may be your other application is using
the port 8080. may be your IIS or may be some tomcat or something else.

So now after changing that you got all the things working. :)

The message "It works" says your apache is working fine. Check out your
doc_root there must be some index.html which says "It works". In apache2 you
will get a test script to test your server is working fine or not.

just try to write <?php phpinfo(); ?> and see how the things are coming.

[off-topic] - the mail you have given below is not matched with your mail,
from where you have sent the mail. :) lol.

----

On Wed, Mar 19, 2008 at 1:27 PM, ambatisreedhar <ambatisreedhar@...>
wrote:

>   Hi friends,
>
> I am new to PHP.
> I started installing Apache server.
>
> Then I visited this page: http://localhost:8080/
>
> Then I got this error:
> "
> (OS 10048)Only one usage of each socket address (protocol/network
> address/port) is normally permitted.
>
> : make_sock: could not bind to address 0.0.0.0:8080
> no listening sockets available, shutting down
> Unable to open logs
> Note the errors or messages above, and press the <ESC> key to exit.
> 18..."
>
> I tried to change httpd.conf file to 8085
>
> Now I am getting this annoying message:
>
> "It works" message is showing on the web page when I am trying to
> access this URL: http://localhost:8085/
>
> Please suggest me to solve these problems.
> Can you tell me the steps in installation?
>
> I followed this
> article "http://www.expertsrt.com/tutorials/Matt/install-apache.html"
> for the installation.
>
> This is my id: ambatisreedhar@... <ambatisreedhar%40gmail.com> or
> ambatisreedhar@... <ambatisreedhar%40hotmail.com>
>
> Regards,
> Sreedhar A
>
>
>


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

#1010 From: "=Raghav=" <raghav108@...>
Date: Sat Mar 22, 2008 7:12 pm
Subject: Help For PHP basics
raghav_pande...
Send Email Send Email
 
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@...

#1011 From: binoy <binoymvee@...>
Date: Mon Mar 24, 2008 6:51 am
Subject: Re: Help For PHP basics
binoymvee
Send Email Send Email
 
go to w3schools.com .this  site contain the basics of the php
if u want to learn in detils php.net is the best
thanks
binoy

=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@...





With Regards
   Binoy.M.V


---------------------------------
  Now you can chat without downloading messenger. Click here to know how.

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

#1012 From: Shiva Kumar Mallikarjun <shivakumar_rnm@...>
Date: Tue Mar 25, 2008 7:53 am
Subject: need XML to Array function
shivakumar_rnm
Send Email Send Email
 
Hi All,

I need a XML to Array function.

I would like to get more info on XML to Array function.

Thanks in advance.

Shiva


      
________________________________________________________________________________\
____
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile.  Try it now. 
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

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

#1013 From: "Vinu Thomas" <vinuthomas@...>
Date: Tue Mar 25, 2008 9:22 am
Subject: Re: need XML to Array function
uglyftp
Send Email Send Email
 
Shiva,
Check the following links for XML -> Array functions for PHP:
http://mysrc.blogspot.com/2007/02/php-xml-to-array-and-backwards.html
http://www.bytemycode.com/snippets/snippet/445/

The first link gives you a function for XML to Array and Array to XML also.

Regards,
Vinu

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

On Tue, Mar 25, 2008 at 1:23 PM, Shiva Kumar Mallikarjun <
shivakumar_rnm@...> wrote:

>   Hi All,
>
> I need a XML to Array function.
>
> I would like to get more info on XML to Array function.
>
> Thanks in advance.
>
> Shiva
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
>
>


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

Messages 984 - 1013 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