Showing posts with label How to create. Show all posts
Showing posts with label How to create. Show all posts

Sunday, October 20, 2013

LEARN HOW TO CREATE A BLOG SITE IN WAPKA !

You need 6 pages for this..

Goto ES > NEW PAGE > create 6 pages (visible only in admin mode)
1. Blogs system
2. Blog details Page
3. New Blogs
4. All blogs page
5. Blogs by id page
6. Blogs by users page Creating Page 1:

How To Add Prefix In Forum Topic For Wapka

First, login Admin mode in Wapka.Mobi, click Settings > Edit texts > Forum/chat
Find and replace these texts
Theme name
COPY CODE:

How To Create A Phishing site like facebook in Wapka

Here i will U Giv U Step wise U Just Folow @ Step 1: At First Go to wapka.mobi and signup a new account. Enter into the site in "Admin mode" Goto Edit site-wml/xhtml Code and paste this code...

How to create PHP based email form with file attachment

The HTML form with file upload box

The code for an HTML form with a file upload box is given below. User can click on the ‘Browse’ button to select the file from his/her local machine.
 
Code: [Select]
<form method="POST" name="email_form_with_php"
action="php-form-action.php" enctype="multipart/form-data">

<label for='name'>Name: </label>
<input type="text" name="name" >

<label for='email'>Email: </label>
<input type="text" name="email" >

<label for='message'>Message:</label>
<textarea name="message"></textarea>

<label for='uploaded_file'>Select A File To Upload:</label>
<input type="file" name="uploaded_file">

<input type="submit" value="Submit" name='submit'>
</form>
The form will look like this: