Search the web
Sign In
New User? Sign Up
phpresource · Storehouse of PHP Resources
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2715 - 2744 of 2744   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries   (Group by Topic) Sort by Date ^  
#2715 From: "chetanrakesh" <chetanrakesh@...>
Date: Thu Feb 5, 2009 10:15 am
Subject: help needed smarty
chetanrakesh
Online Now Online Now
Send Email Send Email
 
Hi Experts,

This is rakesh. I need your help to understand a project requirement.
Please see below message body to check project requirement sent by
client to me.I am very confused. Please suggest me your ideas.

Client Mail Starts Here
------------------------------------
I have to offer some smarty template work.
The work is like you would be occasionally (almost  twice a week)
given templates to create in smarty.

These would have
1)the php calling them to be run from the command prompt .
2) Would take input from the json file
3) output in the html file, created and saved.
4) involves shuffling of the div's

Now the best part about this project is that the basic coding has
already been done, and you would mainly need to create the template
and a few respective changes to the php files. So there is enough
learning for you from this project :-)

If this goes good, I already have parsers to be written, so you would
have some good work to be done, very very frequently.
------------------------------
Client Mail Ends Here.

I have worked on smarty but i cant understand above requirement.
Please explain me 1) to 4) points.

Thank you.
Rakesh.

#2716 From: shaahidthegreat@...
Date: Thu Feb 12, 2009 1:05 pm
Subject: Ekushey Book Fair
shaahidthegreat
Offline Offline
Send Email Send Email
 
Dear Friends,

I got an interesting and informative website (on Ekushey Book Fair), that I want to share with you. Visit and hope you may enjoy..... http://boimela.newsnetbd.com

Good day,

Rafiq
AU






Make Yahoo!7 your homepage and win a trip to the Quiksilver Pro. Find out more.

#2717 From: ilaya raja <ilaya_sasi2k6@...>
Date: Sat Feb 28, 2009 8:23 am
Subject: Ilayaraja.galxy
ilaya_sasi2k6
Offline Offline
Send Email Send Email
 
Hello to all,

I have developed some open sources.

Please visit www.sasiyainfo.com




Get rid of Add-Ons in your email ID. Get yourname@.... Sign up now!

#2718 From: manika bhatia <manika_bhatia@...>
Date: Thu Mar 5, 2009 12:33 pm
Subject: tar file
manika_bhatia
Offline Offline
Send Email Send Email
 
how to extract tar file on linux


Add more friends to your messenger and enjoy! Invite them now.

#2719 From: Fylefou <fylefou@...>
Date: Thu Mar 5, 2009 1:42 pm
Subject: Re: [phpResource] tar file
fylefou
Offline Offline
Send Email Send Email
 
tar -xvf <file>


Le jeudi 05 mars 2009 à 18:03 +0530, manika bhatia a écrit :
how to extract tar file on linux






Add more friends to your messenger and enjoy! Invite them now.



#2720 From: manika bhatia <manika_bhatia@...>
Date: Fri Mar 6, 2009 5:12 am
Subject: tar file
manika_bhatia
Offline Offline
Send Email Send Email
 
how to tar file on linux using php script


Add more friends to your messenger and enjoy! Invite them now.

#2721 From: "celeroos" <celeroos@...>
Date: Thu Apr 23, 2009 9:58 am
Subject: PHP MVC Framework
celeroos
Offline Offline
Send Email Send Email
 
Hi,

Here is a nice simple "MVC PHP Framework", which is powerful, lightweight, very
flexible, transparent. One can easily modify as per their need. It is not
complex or very restricted like other frameworks. Just have a look at this
http://www.celeroo.com/frame/frame.html

Thanks
celeroo
Web Software Development Tool

#2722 From: Surajit Koly <chansuro@...>
Date: Fri May 22, 2009 9:01 am
Subject: Upload a big size file
chan_suro
Offline Offline
Send Email Send Email
 
Hi experts,
 
I want to upload a very big size file through my php script. I need the upload functionality that youtube uses.can you please help me what sould I do?
 
Thanks
Surajit

#2723 From: "jewel_1700" <jewel_1700@...>
Date: Sat May 23, 2009 3:50 am
Subject: Re: Upload a big size file
jewel_1700
Offline Offline
Send Email Send Email
 
hi there,
i think u find something usefull from this url:
http://tinyurl.com/p986y7
or..go and search in this site..
www.phpclasses.org

Thanks
MD.Harisur Rahman [Jewel]
http://harisur.blogspot.com/

--- In phpresource@yahoogroups.com, Surajit Koly <chansuro@...> wrote:
>
> Hi experts,
>
> I want to upload a very big size file through my php script. I need the
> upload functionality that youtube uses.can you please help me what sould I
> do?
>
> Thanks
> Surajit
>

#2724 From: "Mohamed BADR" <badr@...>
Date: Sun Jun 7, 2009 12:45 pm
Subject: multilevel categories
badrm1000000
Offline Offline
Send Email Send Email
 

I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id`)

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

 

 


#2725 From: Muhammad Rizwan Nawaz <rizwan_nawaz786@...>
Date: Mon Jun 8, 2009 3:35 am
Subject: RE: [phpResource] multilevel categories
rizwan051
Offline Offline
Send Email Send Email
 
Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.



Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger: rizwan_nawaz786@...
Gmail: rizwannawaz@... 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681 

=============

SECURITY NOTICE
=============
    
THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.
    
IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.






To: phpresource@yahoogroups.com
From: badr@...
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories




I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id`)

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

 

 




Lauren found her dream laptop. Find the PC that’s right for you.

#2726 From: Atif Majid <atif_majid10@...>
Date: Mon Jun 8, 2009 6:38 am
Subject: Re: [phpResource] multilevel categories
atif_majid10
Offline Offline
Send Email Send Email
 
In Oracle, you can get the parent child tree in one query, but that technique is not yet supported in mysql. So you will have to do the same as suggested by Rizwan.
 
Atif Majid
Software Developer.
Tawasul Telecom
Kuwait Free Zone, Block C-28, D9, Shuwaik, Kuwait
Phone: +965 2295 7164
Mobile: +965 6708 53 95
www.tawasultele.com



From: Muhammad Rizwan Nawaz <rizwan_nawaz786@...>
To: phpresource@yahoogroups.com
Sent: Monday, June 8, 2009 6:35:43 AM
Subject: RE: [phpResource] multilevel categories

Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.



Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger: rizwan_nawaz786@ hotmail.com
Gmail: rizwannawaz@ gmail.com 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681 

============ =

SECURITY NOTICE
============ =
    
THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.
    
IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.






To: phpresource@ yahoogroups. com
From: badr@mohamedbadr. com
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories




I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id` )

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT= 7 ;

 

 




Lauren found her dream laptop. Find the PC that’s right for you.


#2727 From: "Mohamed BADR" <badr@...>
Date: Mon Jun 8, 2009 7:53 am
Subject: RE: [phpResource] multilevelscategories
badrm1000000
Offline Offline
Send Email Send Email
 

But that means for each level I have to do a select query, and I don’t know how many levels are there, it should be unlimited so how do I do that ??

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedbadr.com/

 

From: phpresource@yahoogroups.com [mailto:phpresource@yahoogroups.com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 6:36 AM
To: phpresource@yahoogroups.com
Subject: RE: [phpResource] multilevel categories

 




Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.


Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@...
Gmail:
rizwannawaz@... 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

=============

SECURITY NOTICE

=============

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.





To: phpresource@yahoogroups.com
From: badr@...
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories



I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id`)

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

 

 

 

 


Lauren found her dream laptop. Find the PC that’s right for you.


#2728 From: Atif Majid <atif_majid10@...>
Date: Mon Jun 8, 2009 8:08 am
Subject: Re: [phpResource] multilevelscategories
atif_majid10
Offline Offline
Send Email Send Email
 
In this case, you will have to check if the current ID has been used as parent or no. If yes, run the query to find its child. Most probably, you will be writing a recursive function to achieve this.
 
Atif Majid
Software Developer.
Tawasul Telecom
Kuwait Free Zone, Block C-28, D9, Shuwaik, Kuwait
Phone: +965 2295 7164
Mobile: +965 6708 53 95
www.tawasultele.com



From: Mohamed BADR <badr@...>
To: phpresource@yahoogroups.com
Sent: Monday, June 8, 2009 10:53:09 AM
Subject: RE: [phpResource] multilevelscategories

But that means for each level I have to do a select query, and I don’t know how many levels are there, it should be unlimited so how do I do that ??

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedb adr.com/

 

From: phpresource@ yahoogroups. com [mailto:phpresource @yahoogroups. com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 6:36 AM
To: phpresource@ yahoogroups. com
Subject: RE: [phpResource] multilevel categories

 




Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.


Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@ hotmail.com
Gmail:
rizwannawaz@ gmail.com 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

============ =

SECURITY NOTICE

============ =

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.





To: phpresource@ yahoogroups. com
From: badr@mohamedbadr. com
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories



I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id` )

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT= 7 ;

 

 

 

 


Lauren found her dream laptop. Find the PC that’s right for you.



#2729 From: "Mohamed BADR" <badr@...>
Date: Mon Jun 8, 2009 8:15 am
Subject: RE: [phpResource] multilevelscategories
badrm1000000
Offline Offline
Send Email Send Email
 

I need a code example to do that

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedbadr.com/

 

From: phpresource@yahoogroups.com [mailto:phpresource@yahoogroups.com] On Behalf Of Atif Majid
Sent: Monday, June 08, 2009 11:09 AM
To: phpresource@yahoogroups.com
Subject: Re: [phpResource] multilevelscategories

 




In this case, you will have to check if the current ID has been used as parent or no. If yes, run the query to find its child. Most probably, you will be writing a recursive function to achieve this.

 

Atif Majid
Software Developer.
Tawasul Telecom
Kuwait Free Zone, Block C-28, D9, Shuwaik, Kuwait
Phone: +965 2295 7164
Mobile: +965 6708 53 95
www.tawasultele.com

 

 


From: Mohamed BADR <badr@...>
To: phpresource@yahoogroups.com
Sent: Monday, June 8, 2009 10:53:09 AM
Subject: RE: [phpResource] multilevelscategories

But that means for each level I have to do a select query, and I don’t know how many levels are there, it should be unlimited so how do I do that ??

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedb adr.com/

 

From: phpresource@ yahoogroups. com [mailto:phpresource @yahoogroups. com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 6:36 AM
To: phpresource@ yahoogroups. com
Subject: RE: [phpResource] multilevel categories

 



Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.

Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@ hotmail.com
Gmail:
rizwannawaz@ gmail.com 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

============ =

SECURITY NOTICE

============ =

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.




To: phpresource@ yahoogroups. com
From: badr@mohamedbadr. com
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories

 

I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id` )

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT= 7 ;

 

 

 

 


Lauren found her dream laptop. Find the PC that’s right for you.

 


#2730 From: Muhammad Rizwan Nawaz <rizwan_nawaz786@...>
Date: Mon Jun 8, 2009 8:42 am
Subject: RE: [phpResource] multilevelscategories
rizwan051
Offline Offline
Send Email Send Email
 

Either you can used the recursive function as suggested by Atif or you can use AJAX to reach at certain level. AJAX will be more efficient technique as in this way you are just loading required data.

Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger: rizwan_nawaz786@...
Gmail: rizwannawaz@... 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681 

=============

SECURITY NOTICE
=============
    
THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.
    
IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.






To: phpresource@yahoogroups.com
From: atif_majid10@...
Date: Mon, 8 Jun 2009 01:08:48 -0700
Subject: Re: [phpResource] multilevelscategories




In this case, you will have to check if the current ID has been used as parent or no. If yes, run the query to find its child. Most probably, you will be writing a recursive function to achieve this.
 
Atif Majid
Software Developer.
Tawasul Telecom
Kuwait Free Zone, Block C-28, D9, Shuwaik, Kuwait
Phone: +965 2295 7164
Mobile: +965 6708 53 95
www.tawasultele.com



From: Mohamed BADR <badr@mohamedbadr.com>
To: phpresource@yahoogroups.com
Sent: Monday, June 8, 2009 10:53:09 AM
Subject: RE: [phpResource] multilevelscategories


But that means for each level I have to do a select query, and I don’t know how many levels are there, it should be unlimited so how do I do that ??

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedb adr.com/

 

From: phpresource@ yahoogroups. com [mailto:phpresource @yahoogroups. com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 6:36 AM
To: phpresource@ yahoogroups. com
Subject: RE: [phpResource] multilevel categories

 




Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.



Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@ hotmail.com
Gmail:
rizwannawaz@ gmail.com 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

============ =

SECURITY NOTICE

============ =

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.





To: phpresource@ yahoogroups. com
From: badr@mohamedbadr. com
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories



I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id` )

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT= 7 ;

 

 

 

 


Lauren found her dream laptop. Find the PC that’s right for you.





Hotmail® has ever-growing storage! Don’t worry about storage limits. Check it out.

#2731 From: Atif Majid <atif_majid10@...>
Date: Mon Jun 8, 2009 9:23 am
Subject: Re: [phpResource] multilevelscategories
atif_majid10
Offline Offline
Send Email Send Email
 
Try to use something like similar. May be it is buggy, but u can find an idea



include "YOUR DB CONNECTIVITY CLASS";
$objDB = new CREATEYOURDBObject();
$arrCategory = array();
getcategory($objDB, 0, 0, $arrCategory);
print_r($arrCategory);
function getcategory($objDB, $nParent, $nLevel, $arrCategory)
{
//$arrCategory = array();
$strQuery = "select * from hosp_categories where parent_id=".$nParent;
$nResult = $objDB->RUNQUERY($strQuery);
while ($rstRow=mysql_fetch_array($nResult)) {
$nID = $rstRow['category_id'];
$strSpace = "";
for ($i=0;$i<$nLevel;$i++)
{
$strSpace .= "&nbsp;";
}
$arrCategory[] = array("ID"=>$nID, "Title"=>$strSpace.$rstRow['title']);
$nCount = $objDB->RecordCount("hosp_categories", "parent_id=".$nID);
if($nCount>0)
{
getcategory($objDB, $nID, $nLevel+1, $arrCategory);
}
}
}
 
Atif Majid
Software Developer.
Tawasul Telecom
Kuwait Free Zone, Block C-28, D9, Shuwaik, Kuwait
Phone: +965 2295 7164
Mobile: +965 6708 53 95
www.tawasultele.com



From: Mohamed BADR <badr@...>
To: phpresource@yahoogroups.com
Sent: Monday, June 8, 2009 11:15:25 AM
Subject: RE: [phpResource] multilevelscategories

I need a code example to do that

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedb adr.com/

 

From: phpresource@ yahoogroups. com [mailto:phpresource @yahoogroups. com] On Behalf Of Atif Majid
Sent: Monday, June 08, 2009 11:09 AM
To: phpresource@ yahoogroups. com
Subject: Re: [phpResource] multilevelscategori es

 




In this case, you will have to check if the current ID has been used as parent or no. If yes, run the query to find its child. Most probably, you will be writing a recursive function to achieve this.

 

Atif Majid
Software Developer.
Tawasul Telecom
Kuwait Free Zone, Block C-28, D9, Shuwaik, Kuwait
Phone: +965 2295 7164
Mobile: +965 6708 53 95
www.tawasultele. com

 

 


From: Mohamed BADR <badr@mohamedbadr. com>
To: phpresource@ yahoogroups. com
Sent: Monday, June 8, 2009 10:53:09 AM
Subject: RE: [phpResource] multilevelscategori es

But that means for each level I have to do a select query, and I don’t know how many levels are there, it should be unlimited so how do I do that ??

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedbadr.com/

 

From: phpresource@ yahoogroups. com [mailto:phpresource @yahoogroups. com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 6:36 AM
To: phpresource@ yahoogroups. com
Subject: RE: [phpResource] multilevel categories

 



Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.

Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@ hotmail.com
Gmail:
rizwannawaz@ gmail.com 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

============ =

SECURITY NOTICE

============ =

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.




To: phpresource@ yahoogroups. com
From: badr@mohamedbadr. com
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories

 

I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id` )

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT= 7 ;

 

 

 

 


Lauren found her dream laptop. Find the PC that’s right for you.

 



#2732 From: "Mohamed BADR" <badr@...>
Date: Mon Jun 8, 2009 9:21 am
Subject: RE: [phpResource] multilevelscategories
badrm1000000
Offline Offline
Send Email Send Email
 

I need all cats, subcats to be in one select box, how do I do that ?

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedbadr.com/

 

From: phpresource@yahoogroups.com [mailto:phpresource@yahoogroups.com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 11:43 AM
To: phpresource@yahoogroups.com
Subject: RE: [phpResource] multilevelscategories

 





Either you can used the recursive function as suggested by Atif or you can use AJAX to reach at certain level. AJAX will be more efficient technique as in this way you are just loading required data.

Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@...
Gmail:
rizwannawaz@... 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

=============

SECURITY NOTICE

=============

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.





To: phpresource@yahoogroups.com
From: atif_majid10@...
Date: Mon, 8 Jun 2009 01:08:48 -0700
Subject: Re: [phpResource] multilevelscategories



In this case, you will have to check if the current ID has been used as parent or no. If yes, run the query to find its child. Most probably, you will be writing a recursive function to achieve this.

 

Atif Majid
Software Developer.
Tawasul Telecom
Kuwait Free Zone, Block C-28, D9, Shuwaik, Kuwait
Phone: +965 2295 7164
Mobile: +965 6708 53 95
www.tawasultele.com

 

 


From: Mohamed BADR <badr@...>
To: phpresource@yahoogroups.com
Sent: Monday, June 8, 2009 10:53:09 AM
Subject: RE: [phpResource] multilevelscategories

 

But that means for each level I have to do a select query, and I don’t know how many levels are there, it should be unlimited so how do I do that ??

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedb adr.com/

 

From: phpresource@ yahoogroups. com [mailto:phpresource @yahoogroups. com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 6:36 AM
To: phpresource@ yahoogroups. com
Subject: RE: [phpResource] multilevel categories

 



Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.


Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@ hotmail.com
Gmail:
rizwannawaz@ gmail.com 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

============ =

SECURITY NOTICE

============ =

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.




To: phpresource@ yahoogroups. com
From: badr@mohamedbadr. com
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories

 

I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id` )

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT= 7 ;

 

 

 

 


Lauren found her dream laptop. Find the PC that’s right for you.

 

 


Hotmail® has ever-growing storage! Don’t worry about storage limits. Check it out.


#2733 From: Syed Rajib Rahman <srajib_2003@...>
Date: Thu Jun 11, 2009 4:14 am
Subject: OScommerce help needed.. for product list cuustomization
srajib_2003
Offline Offline
Send Email Send Email
 
Hi Xperts....

Can any body help me about osCommerce template customization??

i need to edit the middle portion of the index page of oscommerce...

I mean product listing portion of the page....

where i get this portion code???

Cheers!!!!

SRR



#2734 From: Muhammad Rizwan Nawaz <rizwan_nawaz786@...>
Date: Wed Jun 10, 2009 5:23 pm
Subject: RE: [phpResource] multilevelscategories
rizwan051
Offline Offline
Send Email Send Email
 

If you want all in one select box than you need to make a recursive function which call itself and fetch sub category untill reached last level.

Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger: rizwan_nawaz786@...
Gmail: rizwannawaz@... 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681 

=============

SECURITY NOTICE
=============
    
THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.
    
IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.






To: phpresource@yahoogroups.com
From: badr@...
Date: Mon, 8 Jun 2009 12:21:06 +0300
Subject: RE: [phpResource] multilevelscategories




I need all cats, subcats to be in one select box, how do I do that ?

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedbadr.com/

 

From: phpresource@yahoogroups.com [mailto:phpresource@yahoogroups.com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 11:43 AM
To: phpresource@yahoogroups.com
Subject: RE: [phpResource] multilevelscategories

 





Either you can used the recursive function as suggested by Atif or you can use AJAX to reach at certain level. AJAX will be more efficient technique as in this way you are just loading required data.

Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@hotmail.com
Gmail:
rizwannawaz@gmail.com 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

=============

SECURITY NOTICE

=============

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.





To: phpresource@yahoogroups.com
From: atif_majid10@yahoo.com
Date: Mon, 8 Jun 2009 01:08:48 -0700
Subject: Re: [phpResource] multilevelscategories



In this case, you will have to check if the current ID has been used as parent or no. If yes, run the query to find its child. Most probably, you will be writing a recursive function to achieve this.

 

Atif Majid
Software Developer.
Tawasul Telecom
Kuwait Free Zone, Block C-28, D9, Shuwaik, Kuwait
Phone: +965 2295 7164
Mobile: +965 6708 53 95
www.tawasultele.com

 

 


From: Mohamed BADR <badr@mohamedbadr.com>
To: phpresource@yahoogroups.com
Sent: Monday, June 8, 2009 10:53:09 AM
Subject: RE: [phpResource] multilevelscategories

 

But that means for each level I have to do a select query, and I don’t know how many levels are there, it should be unlimited so how do I do that ??

 

Mohamed Badr
Senior Web Application Developer

OmegaSoft Projects

mob: +2 010 2050009

website: http://www.mohamedb adr.com/

 

From: phpresource@ yahoogroups. com [mailto:phpresource @yahoogroups. com] On Behalf Of Muhammad Rizwan Nawaz
Sent: Monday, June 08, 2009 6:36 AM
To: phpresource@ yahoogroups. com
Subject: RE: [phpResource] multilevel categories

 



Hi,

Top most element don't have parent so it's partent_id is 0. Your first query is

Select * from hosp_categories where parent_id = '0'

This will give you the top elements which you can loop and shows in <select. Once the user select any of the element in Top <select you have to pass it's id in query string and run the following query to load the child,

select * from hosp_categories where parent_id = '$ID FROM QUERY STRING'

This will give you the list of child of selected which you can easily show in <select. Same procedure is follow for next level of category. You can go till n level with this approach.


Thanks
Best Regards,
Muhammad Rizwan Nawaz
Email / MSN Messenger:
rizwan_nawaz786@ hotmail.com
Gmail:
rizwannawaz@ gmail.com 
Yahoo IM: rizwan051
AOL IM: riznawaz
Skype: rizwannawaz
ICQ: 442047681
 

============ =

SECURITY NOTICE

============ =

    

THE INFORMATION CONTAINED IN THIS TRANSMISSION IS PRIVILEGED AND CONFIDENTIAL.  IT IS INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY NAMED ABOVE.  IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, DISTRIBUTION OR COPY OF THIS COMMUNICATION IS STRICTLY PROHIBITED.

    

IF YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE IMMEDIATELY NOTIFY AND RETURN THE ORIGINAL MESSAGE TO THE SENDER AND DELETE IT. THANK YOU.




To: phpresource@ yahoogroups. com
From: badr@mohamedbadr. com
Date: Sun, 7 Jun 2009 15:45:27 +0300
Subject: [phpResource] multilevel categories

 

I have categories table with multilevel categories I need to make the insert statement for the sub categories and sub subcategories so I need to populate a <select> box with this tree so I can insert the parent id with the new subcategory

Anyone knows how to populate this select box with the tree ??

 

The table is here

 

CREATE TABLE IF NOT EXISTS `hosp_categories` (

  `category_id` int(10) NOT NULL auto_increment,

  `parent_id` int(10) NOT NULL,

  `title` varchar(255) NOT NULL,

  `description` text NOT NULL,

  `image` varchar(255) NOT NULL default '',

  PRIMARY KEY  (`category_id` )

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT= 7 ;

 

 

 

 


Lauren found her dream laptop. Find the PC that’s right for you.

 

 


Hotmail® has ever-growing storage! Don’t worry about storage limits. Check it out.




Insert movie times and more without leaving Hotmail®. See how.

#2735 From: "habib_ruet" <habib_ruet@...>
Date: Sun Jul 5, 2009 4:32 am
Subject: Convert .xls to .csv
habib_ruet
Offline Offline
Send Email Send Email
 
Does anyone know of a tool that can convert .xls files to .csv?

I have tried google, but cant see anything so far.

    habib

#2736 From: Sujit Roy <sujit_chemistry@...>
Date: Sun Jul 5, 2009 10:46 am
Subject: Re: [phpResource] Convert .xls to .csv
sujit_chemistry
Offline Offline
Send Email Send Email
 
This does not require any programming. You just need to save the XLS file as CSV.


Regards,

--
Sujit

--- On Sat, 7/4/09, habib_ruet <habib_ruet@...> wrote:

From: habib_ruet <habib_ruet@...>
Subject: [phpResource] Convert .xls to .csv
To: phpresource@yahoogroups.com
Date: Saturday, July 4, 2009, 9:32 PM



Does anyone know of a tool that can convert .xls files to .csv?

I have tried google, but cant see anything so far.

habib



#2737 From: Ahsan Habib <habib_ruet@...>
Date: Tue Jul 7, 2009 10:23 am
Subject: Re: [phpResource] Convert .xls to .csv
habib_ruet
Offline Offline
Send Email Send Email
 
 Thanks

  Sujit


......
Habib

--- On Sun, 7/5/09, Sujit Roy <sujit_chemistry@...> wrote:

From: Sujit Roy <sujit_chemistry@...>
Subject: Re: [phpResource] Convert .xls to .csv
To: phpresource@yahoogroups.com
Date: Sunday, July 5, 2009, 3:46 AM

This does not require any programming. You just need to save the XLS file as CSV.


Regards,

--
Sujit

--- On Sat, 7/4/09, habib_ruet <habib_ruet@yahoo. com> wrote:

From: habib_ruet <habib_ruet@yahoo. com>
Subject: [phpResource] Convert .xls to .csv
To: phpresource@ yahoogroups. com
Date: Saturday, July 4, 2009, 9:32 PM



Does anyone know of a tool that can convert .xls files to .csv?

I have tried google, but cant see anything so far.

habib




#2738 From: Sherif Ahsan <sherif_cse@...>
Date: Sun Aug 2, 2009 12:21 am
Subject: How can i get 'plugin menu' in wordpress?
sherif_cse
Offline Offline
Send Email Send Email
 

Can any body tell me How can i add Plugins-menu so that I can manage plugins in wordpress. As By Default, i do not have that menu option.

OR Eeven, u could tell me about ftp access so that i can upload in 'wp-contents/plugins' folder.
 
Regards.
Sherif



#2739 From: Ahsan Habib <habib_ruet@...>
Date: Sun Aug 2, 2009 8:50 am
Subject: Fw: [phpResource] How can i get 'plugin menu' in wordpress?
habib_ruet
Offline Offline
Send Email Send Email
 

hello,

you have first require Flieailla (http://filezilla-project.org/download.php ) software which access the ftp server ...................you can used this software for  uploading  file your web server ...

thanks

----------------
HABIB




--- On Sat, 8/1/09, Sherif Ahsan <sherif_cse@...> wrote:

From: Sherif Ahsan <sherif_cse@...>
Subject: [phpResource] How can i get 'plugin menu' in wordpress?
To: phpresource@yahoogroups.com
Date: Saturday, August 1, 2009, 5:21 PM

 


Can any body tell me How can i add Plugins-menu so that I can manage plugins in wordpress. As By Default, i do not have that menu option.

OR Eeven, u could tell me about ftp access so that i can upload in 'wp-contents/ plugins' folder.
 
Regards.
Sherif




#2740 From: "hellow_rainbow" <hellow_rainbow@...>
Date: Sun Aug 2, 2009 2:24 pm
Subject: Re: How can i get 'plugin menu' in wordpress?
hellow_rainbow
Offline Offline
Send Email Send Email
 
Hi Sherif, Assalamu Alaikum!

  It is to Good to hear that you are managing a WordPress Blog.
So now you want to Manage your Plugins huh?

For that you can't use ftp as all Plugins should be installed through your
control panel only.

So If you want to Install New Plugins for any various purposes Just you need to
login to your word press Control panel as admin then in the Left side Navigation
menu Select Plugins the in the upcoming page click ADD NEW.

If you know the name of the plugin you want to install then you can search it
through your search box or else if you have the Plugin Zipped locally then you
can upload it too.
It will install the Plugin you want.
Thats it. Now you can get its control options in the Settings Meu on your left
hand side of the Control Panel

Regards,
Divanoli M.
(Admin - www.sisgames.mobi )

#2741 From: Sherif Ahsan <sherif_cse@...>
Date: Sun Aug 2, 2009 6:13 pm
Subject: Re: [phpResource] Re: How can i get 'plugin menu' in wordpress?
sherif_cse
Offline Offline
Send Email Send Email
 
Wa-alaikumus salam,
 
Boss, you said " Just you need to login to your wordpress Control panel as admin then in the Left side Navigation menu Select Plugins "
 
If i found that menu i.e. plugin menu I could do that.
 
Here is my attached Dashboard (control panel) Image.
 
Now, how can I find that menu? Plz help me.

 
Take care.
Sherif



From: hellow_rainbow <hellow_rainbow@...>
To: phpresource@yahoogroups.com
Sent: Sunday, August 2, 2009 10:24:05 AM
Subject: [phpResource] Re: How can i get 'plugin menu' in wordpress?

 

Hi Sherif, Assalamu Alaikum!

It is to Good to hear that you are managing a WordPress Blog.
So now you want to Manage your Plugins huh?

For that you can't use ftp as all Plugins should be installed through your control panel only.

So If you want to Install New Plugins for any various purposes Just you need to login to your word press Control panel as admin then in the Left side Navigation menu Select Plugins the in the upcoming page click ADD NEW.

If you know the name of the plugin you want to install then you can search it through your search box or else if you have the Plugin Zipped locally then you can upload it too.
It will install the Plugin you want.
Thats it. Now you can get its control options in the Settings Meu on your left hand side of the Control Panel

Regards,
Divanoli M.
(Admin - www.sisgames. mobi )



1 of 1 Photo(s)


#2742 From: "hellow_rainbow" <hellow_rainbow@...>
Date: Mon Aug 3, 2009 2:18 pm
Subject: Re: How can i get 'plugin menu' in wordpress?
hellow_rainbow
Offline Offline
Send Email Send Email
 
Salam!



I thought you were using word press in your own Hosted site.
By By seeing this Picture I can understand you are using word press hosted free
account, where you cannot use plugins ever.

Finally i don't want to mess up this Post n my Final Answer is
You Can't

Or Else Try your Better Here.
http://www.wordpressmax.com/wordpress-guide/how-to-upload-plugins-wordpress-guid\
e


Good Luck

Regards,
Divanoli M.
(Admin - www.sisgames.mobi )

#2743 From: Sherif Ahsan <sherif_cse@...>
Date: Mon Aug 3, 2009 5:29 pm
Subject: Re: [phpResource] Re: How can i get 'plugin menu' in wordpress?
sherif_cse
Offline Offline
Send Email Send Email
 
Thanks a lot.
 
You are Great.
Take care.
Sherif



From: hellow_rainbow <hellow_rainbow@...>
To: phpresource@yahoogroups.com
Sent: Monday, August 3, 2009 10:18:11 AM
Subject: [phpResource] Re: How can i get 'plugin menu' in wordpress?

 

Salam!

I thought you were using word press in your own Hosted site.
By By seeing this Picture I can understand you are using word press hosted free account, where you cannot use plugins ever.

Finally i don't want to mess up this Post n my Final Answer is
You Can't

Or Else Try your Better Here.
http://www.wordpressmax.com/wordpress-guide/how-to-upload-plugins-wordpress-guide

Good Luck

Regards,
Divanoli M.
(Admin - www.sisgames. mobi )



#2744 From: Mahesh Mithe <mahesh.mithe@...>
Date: Thu Sep 24, 2009 6:14 am
Subject: Fw: Sr.Faculty/Trainer required urgently
mahesh.mithe
Offline Offline
Send Email Send Email
 


--- On Thu, 9/24/09, Shabbir InnateLabs <shabbir@...> wrote:

From: Shabbir InnateLabs <shabbir@...>
Subject: Sr.Faculty/Trainer required urgently
To: "InnateLabs Indore" <indore@...>
Cc: mahesh.mithe@..., shilpa.mate@...
Date: Thursday, September 24, 2009, 2:03 AM

 
InnateLabs is a Vadodara based leading IT Training and Consulting Company. We are having an experience of a decade in IT Industry. Our Industry-endorsed course content and experienced and certified team of Faculties deliveres Industry-level training to the Working Professionals and Freshers.
 
We are having urgent requirement for following position at our Indore Centre.

Software Testing Trainer/Sr.Faculty
Desired Profile:
Role:  Trainer (Corporate/In-house)
Experience: 6 months to 1 year or Fresher with good presentation skills
Qualification : BE/MCA/MBA in CS/IT/Systems
Job Category: Training
Key Skills:  Software Testing, .Net/Java/PHP-MySQL (Any one)
Location : Indore
 
Job Description:
Candidate must have experience/knowledge in Corporate/Institutional Training.
Excellent communication & presentation skills.
Should have outbound training experience
Conduct Seminars and Workshops
To identify potentials and specific opportunities for our Training Courses.
Visit different Engineering & Science colleges for our Course deliveries.
 
Interested candidates may send their resumes at indore@...
 
Warm Regards
Shabbir Sabir
 
InnateLabs
308, Akashdeep Complex,
Sapna-Sangeeta Road
Indore (MP)


Messages 2715 - 2744 of 2744   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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