Home > Groups > Web Development

Web Development

Group

Groups for all the web developers, designers, webmasters and learners

Install XDebug on ( LAMPP OR XAMPP For Linux )

Article
Published in

To Install XDebug on LAMPP

1) Download the latest version of ( XAMPP For Linux ) From site http://www.apachefriends.org/en/xampp-linux.html
2) Install it. To install lampp, extract and put in /opt directory.
3) Download Development package from same site.

Direct download/upload files by firefox - firefox ftp client

Article
Published in

FireFTP - The firefox ftp client
Using FireFTP, you can directly connect to the ftp server by the firefox . It will be very good if you don't want to install ftp clients like FileZilla, SmartFTP etc. For more information visit the url https://addons.mozilla.org/en-US/firefox/addon/684

Write PHP code inside javascript code and Javascript code inside php code

Article
Published in

Example1:Assign value to php variable using javascript variable.

//Put this code in body of page

<?php $myvar=1; ?>
<script type="text/javascript">
jsvar = 3;

//Assign jsvar javascript variable value to php variable $myvar
'<?php $myvar="<script>document.write(jsvar)</script>"; ?>';
</script>

<?php echo $myvar; ?>

Example 2: Assign javascript counter variable to php variable

Free Javascript Date Picker List

Article
Published in

 

 

1) Popup DatePicker By Javascript Kit

Description:- Date Time Picker allows your visitors to easily input a date/time into a form field, by selecting it from a popup window. Supports output dates in various formats such as: dd/MM/yyyy, dd/MMM/yyyy, MM/dd/yyyy etc. An extremely versatile script.

Submit form without submit button or submit form using a link

Article
Published in

Let's go with example

1) Create a form within body tag

<form name="form1" id="form1" action="" method="post">
<input type="text" name="uname">
</form>

Generally when you click on submit button then form is submit but when submit button is not available then how you will submit. For that you should follow some simple steps

2) create a javascript function inside head or body section of your page

CSS center align template

Article
Published in

To creating center align template you should use below code.

Example:- Simple centered align html template

Write first jquery program

Article
Published in

To write first jquery program follow the below steps: -

1) Download the jquery file from http://docs.jquery.com/Downloading_jQuery

2) include jquery js file in <head> section of your html page

3) create a div element in body tag

<div id="test">write text here</div>

4) Now we will show and hide above div on click of a element <a>

Syndicate content

Bookmark and Share
Home Back To Top