Jump to content

xhtmlchamps1

Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by xhtmlchamps1

  1. yes it is possible you can run itcontent is the i.d of <div> and it displays the information with out refreshing.
  2. $sql="INSERT INTO discussions (name, desc, maker)VALUES('".$_POST[name]."', '".$_POST[desc]."', '$id')"; This is the right way to write you can also write in this manner $sql="INSERT INTO discussions (name, desc, maker)VALUES('".$_POST['name']."', '".$_POST['desc']."', '$id')"; ('".$_POST['name']."' this particular key word can accepts the values perfectly.
  3. May be some reloading problem ocured.refresh and again try to open it newly
  4. xhtmlchamps1

    looping

    <p>Here is the code</p><p> </p><div><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"></div><div><html></div><div><title>new project</title></div><div><head></div><div></head></div><div><body onload="loop()"></div><div> </div><div> </div><div><script type="text/javascript"></div><div>function loop(){</div><div>var names = ['john','gail','julie','jason','zoe'];</div><div>var allnames = names.length;</div><div> </div><div>for (var i = 0; i < names.length; i++) {</div><div> </div><div> </div><div> document.write(names+"<br>");</div><div> </div><div>}</div><div> </div><div>}</div><div></script></div><div></body></div><div> </div><div> </div><div> </div><div> </div><div></html></div><div> </div>
  5. The reason is either your website is poor connectivity with server or it usually drains down with lack of best web hosting services.
  6. try this code. for sure it will help you. opacity:0.4;filter:alpha(opacity=40) mention clearly how much size you want for your image in opacity.
  7. <p> </p><p> </p><p> </p><p> </p><p> </p><p> </p><p>use this code for sure you get an image as transparency as you required.</p><p> </p><p> </p><div class="msg Nth">opacity:0.4;<br />filter:alpha(opacity=40)</div><div class="msg Nth"> </div><div class="msg Nth">in word-box mention size of opacity clearly how much percentage you require?</div>
  8. document.getElementById("id").style.property="value"in the place of property replace with "font-family or font-size"by using jquery your requirement can be possible more easily.
  9. xhtmlchamps1

    CSS align

    basic info must be replaced and paste it same in HTML part of body,i.e paste it downNo need of cssmain block user details is required
  10. you have mentioned a class and i.dit comes from where?just display all the css regarding the output to be displayed
  11. lower version of ie will not work it should be more the ie8ie8 or else more for firefox it should be more than 3.8what ever the latest version is?
  12. Hope this code useful to you. <fieldset class="field"><a href="BTSTestPage2.html"><b>Article & blogs</b></a></fieldset>
  13. First step remove IF EXISTS and here is the actual code (SELECT * FROM information_table.COLUMNS WHERE TABLE_NAME='db_name' AND TABLE_NAME='communityCustomFeatures' AND COLUMN_NAME='ccf_id');BEGIN;ALTER TABLE `communityCustomFeatures` ADD `ccf_id` ) FIRST;ELSE;ALTER TABLE `communityCustomFeatures` MODIFY `ccf_id` ) FIRST;
  14. May be this code is use full to you span.bbc_underline {text-decoration: none; if you want underline as hyperlink span.bbc_underline {text-decoration: underline !important; Use the code of css to highlight it as hyper link span.bbc_underline {cursor: pointer;text-decoration: none;
  15. Hello friend,you are using $.get method then you have to check the condition $_GET[' '] in php file or else if you are using $.post method you have to check the condition $_POST[' '] in php file.
  16. Hello friend, Sessions names must be same for all websites, then all of the websites must be opened in the same browser.then you can get succeeded in the above task.
  17. Hello friend,In the 4th version of PHP just we have basics and introduction.In the 5.x version of PHP we have java level oops concepts mixed up with PHP coding.
  18. $sql="INSERT INTO discussions (name, desc, maker)VALUES('".$_POST[name]."', '".$_POST[desc]."', '$id')"; Try this code, will be better use to you
  19. xhtmlchamps1

    PHP releases

    New php with oops concepts available in the market and which is a little bit tough in programming for website.
  20. Hello friend,this code may helps you to run your applet application in browsers like IE, netscape and safari.getJREs: function() { var list = new Array(); if (deployJava.isPluginInstalled()) { var plugin = deployJava.getPlugin(); var VMs = plugin.jvms; for (var i = 0; i < VMs.getLength(); i++) { list = VMs.get(i).version; } } else { var browser = deployJava.getBrowser(); if (browser == 'MSIE') { if (deployJava.testUsingActiveX('1.7.0')) { list[0] = '1.7.0'; } else if (deployJava.testUsingActiveX('1.6.0')) { list[0] = '1.6.0'; } else if (deployJava.testUsingActiveX('1.5.0')) { list[0] = '1.5.0'; } else if (deployJava.testUsingActiveX('1.4.2')) { list[0] = '1.4.2'; } else if (deployJava.testForMSVM()) { list[0] = '1.1'; } } else if (browser == 'Netscape Family') { deployJava.getJPIVersionUsingMimeType(); if (deployJava.firefoxJavaVersion != null) { list[0] = deployJava.firefoxJavaVersion; } else if (deployJava.testUsingMimeTypes('1.7')) { list[0] = '1.7.0'; } else if (deployJava.testUsingMimeTypes('1.6')) { list[0] = '1.6.0'; } else if (deployJava.testUsingMimeTypes('1.5')) { list[0] = '1.5.0'; } else if (deployJava.testUsingMimeTypes('1.4.2')) { list[0] = '1.4.2'; } else if (deployJava.browserName2 == 'Safari') { if (deployJava.testUsingPluginsArray('1.7.0')) { list[0] = '1.7.0'; } else if (deployJava.testUsingPluginsArray('1.6')) { list[0] = '1.6.0'; } else if (deployJava.testUsingPluginsArray('1.5')) { list[0] = '1.5.0'; } else if (deployJava.testUsingPluginsArray('1.4.2')) { list[0] = '1.4.2'; } } }}
  21. Hello friend, animate({margin-left: -1800} ,{duration:500});use this code instead of using delay function.
  22. Do not create any child table, you can create a separate table and it should have common 'ID' in both of the tables. Then use join queries For example; inner join, left join, right join etc. Thank you
  23. Hello friend, You can use the code in CSS in order to remove your border appearance in browser, code is: border: none;orborder: 0Try it once you can get better result.
×
×
  • Create New...