- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
34 Posted Topics
Re: 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 | |
Re: 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 | |
Re: 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 | |
Re: Hi If you need the values from first page you should use the session for this implementation. | |
Re: 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 | |
Re: 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] | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: Hello Dom please try this [url]http://www.phpeasystep.com/mysql/10.html[/url] I hope this should solve your problem Thanks and Regards | |
Re: 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 | |
Re: 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 … | |
Re: Hello Varadha Welcome to this forum.you can study in w3c schools.com Thanks for sharing | |
Re: 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 | |
Re: 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] | |
Re: 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 | |
Re: 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 … | |
Re: Dear friend You should use the "WHERE" condition Like the below code Select count(field name) where name='' Thanks | |
Re: 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) | |
Re: I am also looking for the same, If you come across please let me know. | |
Re: 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 | |
Re: 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" … | |
Re: 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 | |
Re: 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 | |
Re: Dear Friend check the table field name in database Thanks and Regards | |
Re: 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] | |
Re: 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 | |
Re: 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 | |
Re: 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 == … | |
Re: Dear friend $value= array(2,5,6,8,9); echo "size of array = ".sizeof($value)."<br>"; // Output = 5 Thanks and Regards | |
Re: hi Really very great information ayeesha.. regards Guru | |
Re: 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 | |
Re: Hello Drupal CMS Websites for your needs please contact Adodis Technology. Website: http://www.adodis.com GTalk:abi.adodis@mail.com Thanks |
The End.