Search found 4 matches

by worldnet
Mon Aug 03, 2009 10:03 pm
Forum: General Discussion
Topic: how to create new template using vbulletin
Replies: 3
Views: 469

Re: how to create new template using vbulletin

You create a template called "BLOG >>" and set it as the parent of blog1 and blog2.
by worldnet
Mon May 25, 2009 1:02 pm
Forum: PHP - Code
Topic: European characters (Western charset) with Ajax/PHP
Replies: 1
Views: 71

European characters (Western charset) with Ajax/PHP

How to handle western characters(European charset) is displayed in unreadable format during the data fetched from PHP using Ajax?
by worldnet
Thu Mar 05, 2009 10:15 am
Forum: PHP - Code
Topic: Passing Variables to new php pages
Replies: 1
Views: 95

Re: Passing Variables to new php pages

Using post and get could accomplish passing of variable from php page to another php page ex. $_POST['name'] or $_GET['name']. And if you mean to pass an HTML tag to other php page you could do templating ex: $radio = "<input type="radio" name="" />";
by worldnet
Mon Mar 02, 2009 10:22 am
Forum: PHP - Code
Topic: How to delete a folder with hidden folders and files
Replies: 1
Views: 285

Re: How to delete a folder with hidden folders and files

Hi,

You can use a unix command to delete directories and files inside by using rm -rf {directory here} if you want to execute unix commands using php try to look into system(), and exec() functions.