Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
1 Commented Post
0 Endorsements
Ranked #2K
~12.6K People Reached
Favorite Tags

34 Posted Topics

Member Avatar for khess

Hello All Well.Great Post , Thanks a lot , it is very much elaborated and all can easily follow up your tips. Thank you for your posting

Member Avatar for cwarn23
-8
1K
Member Avatar for mahe4us

please check the below links [url]https://cms.paypal.com/us/cgi-bin/?&cmd=_render-content&content_ID=developer/e_howto_html_subscribe_buttons[/url] Thanks and Regards

Member Avatar for razalakhan
0
163
Member Avatar for veledrom

Hello Joomla and Drupal are two magnificent Open Source Content Management System which provide the framework to develop effortless with various ready to us modules and website in short span of time. Thanks for sharing

Member Avatar for peter_budo
0
135
Member Avatar for kira4

Hi If you need the values from first page you should use the session for this implementation.

Member Avatar for nav33n
-1
140
Member Avatar for j4mes_bond25

Hello I like joomla.joomla is very secured and seo friendaly one.And Very Easy.Joomla uses plugin and modules whereas Drupl has module only. Thanks for sharing

Member Avatar for xav.vijay
-1
159
Member Avatar for mrcniceguy

Hi Please check the following links [url]http://www.joomla.org/[/url] [url]http://docs.joomla.org/[/url] [url]http://www.joomla.org/about-joomla.html[/url]

Member Avatar for guru12
0
80
Member Avatar for filch

Hi What is the WHERE a.airport_code= apcode? if any alias for apcode

Member Avatar for filch
0
126
Member Avatar for MArun25039

Hello Arun Steps : 1.Count the row of the table 2.if the row counts less tan 20, condition is true other wise condition is false example: Select count(id) From table name where condition --- execute the query if($row != 20) { condition true } else { condition false } Thanks …

Member Avatar for vincent2085
0
156
Member Avatar for Tekkno

Hello darkgan Try Union operator in mysql query Syntax: (SELECT a FROM t1 WHERE a=10 AND B=1 ORDER BY a LIMIT 10) UNION (SELECT a FROM t2 WHERE a=11 AND B=2 ORDER BY a LIMIT 10) or (SELECT * FROM t1 ) UNION (SELECT * FROM t2 ) Reference link …

Member Avatar for Tekkno
0
86
Member Avatar for harikris2007

Hi USe the below code and try it define('BASE_DIR','songs'); // log downloads? true/false define('LOG_DOWNLOADS',false); // log file name define('LOG_FILE','downloads.log'); // Allowed extensions list in format 'extension' => 'mime type' // If myme type is set to empty string then script will try to detect mime type // itself, which would …

Member Avatar for guru12
0
118
Member Avatar for StrikeFreedom

Hello Dom please try this [url]http://www.phpeasystep.com/mysql/10.html[/url] I hope this should solve your problem Thanks and Regards

Member Avatar for guru12
0
3K
Member Avatar for dnmoore

Hello dn The joomla cms have this option the joomla cms is very easy to create the cms please refer the below two links for download and configure the joomla website and joom extplorer for use the upload,edit and delete files 1.[url]http://www.compassdesigns.net/joomla-blog/Download-Joomla-1.5-Stable.html[/url] 2.[url]http://extensions.joomla.org/extensions/core-enhancements/file-management/2630[/url] Thanks and Regards

Member Avatar for guru12
0
85
Member Avatar for wistech

Joomla Web designer is a Leading Open source Customizing Company. We Undertake Joomla Web Design, Custom Joomla Designer, joomla templates designer, joomla application development. Our Services: *Joomla web design and development *Open Source CMS. *Joomla E-commerce Solution *Joomla Maintenance *Joomla Redesign *Offshore joomla Design * Joomla templates design * Joomla …

Member Avatar for guru12
0
111
Member Avatar for varadharaja

Hello Varadha Welcome to this forum.you can study in w3c schools.com Thanks for sharing

Member Avatar for guru12
0
71
Member Avatar for trtcom1

Dear Friend The update query should have the "WHERE" condition , use the below syntax to update the dates [code=sql]UPDATE table_name SET column1=value, column2=value2,... WHERE some_column=some_value [/code] THanks

Member Avatar for trtcom1
0
462
Member Avatar for versatile36

I think Now you will clear te difference between the span and div See below example For example, this... [code=html]<ul class="menu"> <li>Main page</li> <li>Contents</li> <li>Help</li> </ul>[/code] ...is usually preferable to this: [code=html]<div class="menu"> <span>Main page</span> <span>Contents</span> <span>Help</span> </div>[/code]

Member Avatar for MidiMagic
0
91
Member Avatar for ersubhajit

Dear friend Can you please remove the session_start(), because they already start the seecion in include("../lib/globals.php"); file , these reason only show this error THanks

Member Avatar for guru12
0
153
Member Avatar for xuexue

Dear friend use the below sample code [code=php]<form action="<?php print $PHP_SELF?>" enctype="multipart/form-data" method="post"> Last Name:<br /> <input type="text" name="name" value="" /><br /> Class Notes:<br /> <input type="file" name="classnotes" value="" /><br /> <p><input type="submit" name="submit" value="Submit Notes" /></p> </form> <?php define ("FILEREPOSITORY","./"); if (is_uploaded_file($_FILES['classnotes']['tmp_name'])) { if ($_FILES['classnotes']['type'] != "application/pdf") { echo …

Member Avatar for xuexue
0
78
Member Avatar for ayesha789

Dear friend You should use the "WHERE" condition Like the below code Select count(field name) where name='' Thanks

Member Avatar for guru12
0
104
Member Avatar for eakinpeter

Hi, First you select the values from the database using "Select query", after select the values, you use the following function for your results array_unique($value)

Member Avatar for guru12
0
76
Member Avatar for srimks
Member Avatar for guru12
0
83
Member Avatar for IdeaAlex

Dear friend Check the below links , 1.[url]http://www.problogger.net/archives/2008/12/16/9-seo-plugins-every-wordpress-blog-should-have/[/url] 2.[url]http://wordpress.org/extend/plugins/all-in-one-seo-pack/[/url] Thanks

Member Avatar for abhicary
0
85
Member Avatar for NoID

Dear friend Assign the $ID $ID=$_POST['ID']; Use the below code [code=php]<html> <head> </head> <body> <?php $con = mysql_connect("localhost","t","123456"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("t", $con); if(isset($_POST['ID'])){ mysql_query("SELECT ID FROM table WHERE ID = '".$_POST['ID']."'LIMIT 1"); } $row = mysql_fetch_assoc($result); echo $row; mysql_close($con); ?> <form method="post" …

Member Avatar for NoID
0
122
Member Avatar for mostafa aedera

Dear friend Check the below link [url]http://www.webpronews.com/topnews/2005/07/18/synchronize-multiple-mysql-databases-with-php[/url] Thanks and Regards

Member Avatar for guru12
0
51
Member Avatar for gagan22

Hi Refer the following link for creating the form. [url]http://www.w3schools.com/php/php_post.asp[/url]. If you store this value to database refer the followin glink [url]http://www.w3schools.com/sql/sql_insert.asp[/url] After Edit and Delete: You get the ID for the particular field and write the SQL Delete Code

Member Avatar for guru12
0
142
Member Avatar for CFROG
Member Avatar for CFROG
0
107
Member Avatar for drugoholic

Hi Please use the following and wriite the css code for IE7 [code]/* This code has highest priority in IE7 */ *+html.(or)#class/Id name { } /* This code has highest priority in IE6 */ *html .(or)#class/Id name { }[/code]

Member Avatar for drugoholic
0
108
Member Avatar for MArun25039

Dear friend Use the insert code like this [code=sql]INSERT INTO `tablename` (`id`, `name`) VALUES (30, '<a href=ww.yahoo.com>Yahoo</a>');[/code] THanks and Regards

Member Avatar for guru12
-1
5K
Member Avatar for acaciasd

Dear friend Use the BETWEEN query Like this [icode]$sql = "SELECT total FROM mytable WHERE date BETWEEN satartdate value AND end date value";[/icode] Thank and Reagrds Robin

Member Avatar for guru12
0
109
Member Avatar for Sailor_Jerry

Dear friend use the below code to multiple table insert [code=php]< ? $batchconnection = new mysqli($dbHost, $dbUser, $dbPass, $dbName); if ($batchconnection->connect_error) { echo "Error Occurred While Connection To DataBase"; } $sqlStatements = "insert into test(name) values('Hitesh');insert into test(name) values('Agrawal');insert into test(name) values('Hello');insert into test(name) values('World')"; $sqlResult = $batchconnection->multi_query($sqlStatements); if($sqlResult == …

Member Avatar for Sailor_Jerry
0
143
Member Avatar for EvilOrange

Dear friend $value= array(2,5,6,8,9); echo "size of array = ".sizeof($value)."<br>"; // Output = 5 Thanks and Regards

Member Avatar for guru12
0
112
Member Avatar for ayesha789
Member Avatar for ayesha789
0
154
Member Avatar for som_sekhar

dear fnds I am facing a major problem inintenet explore 7 version.. One of my website pages is flickering when i am navigating through the links of the website. Regards Guru

Member Avatar for guru12
0
82
Member Avatar for wanya

Hello Drupal CMS Websites for your needs please contact Adodis Technology. Website: http://www.adodis.com GTalk:abi.adodis@mail.com Thanks

Member Avatar for belletube
0
139

The End.