Jump to content

paramasivan

Members
  • Posts

    23
  • Joined

  • Last visited

Posts posted by paramasivan

  1. Can i get this like (w3schools.invisionzone.com's) forum(,i mean look&feel,lot of facilities) to worh with for discussing VB applications.I attempt to work with lot forums dealing VB.But no one satisfy me like this.(Satisfied my PHP queries).Any one knowing this like forum to discuss VB based project .Please give the information.

  2. hey, long time no questions! :)...i'm looking for a good reference on using date and time in MySQL to keep track of event entries......i want to store a time, day, month, and year, and display the events in chronological order. when the date passes, i'd like to have that event move to an archive......really, all i need to figure out is how to store and sort by time and date. i found a bunch of references, but none of them really seemed clear. maybe i'm looking in the wrong places......help?...thanks!love,jason
    ORDER BY date_field ASC/DESC may do.i THINK.
  3. I want to try and do it in php and stay away from javascript though. This is what i ahve so far... do u think it can be adapted because this isn't working...
    <?php														$picture = "images\blue-carry.jpg";														echo "<a href='images\blue-carry.jpg?link = 1'><img src='$picture' border='0' /></a>";														if($_GET['link'] == 1)														{																$picture = "images\blue-ebook.jpg";																echo "<img src='$picture' border='0' />";														}												 ?>

    Anchor tag's href is an image is possible?
  4. I need help to create popup balloon when a mouse hover a button. I was able to create box but it alwyas at the upperleft corner of the page.Can anyone help me .Thanks
    window.open('nemo_popup.php','new','width=460, height=500,scrollbars=yes,resizable=yes,top=20,left=300');Give the specs argument ie)top&left to the open method of window object.It may satisfy you.
  5. How do I create different columns on a website? Im looking to create something similar to www.alluc.org, where the left side is a list of links, the right side is new additions and the main text is in the center. Thanks
    <table> <tr> <td> Put your menu links here </td> </tr> <tr> <td> Put your main text here </td> </tr> <tr> <td> Put your new additions here </td> </tr></table>It may satisfy you.
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Paramasivan's demonstration </title><style type="text/css" media="screen">td.normaltext{font-size:11px;color:blue;font-weight:normal;font-family:verdana,Arial;}</style></head><body leftmargin=0 topmargin=20 marginwidth=0 marginheight=0 bgcolor="#DEE7E7"><table border="0" cellspacing="0" cellpadding="0" width="100%"><tr><td colspan="2" class="normaltext">this is normal text<b>This is bold text. You have to check it out.</b><font color="red"><small>*</small></font></td></tr></table></body>

    Yes ovrerriding is possible.
  7. look at it this way in regards to the 2 attributes clashing - how can you give the same text 2 opposite styles without using browser only hacks??the answer is, you cant.you either have the text bold, or normal, not both.:)
    MY property overiding code <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Paramasivan's demonstration </title><style type="text/css" media="screen">td.normaltext{ font-size:11px; color:blue; font-weight:normal; font-family:verdana,Arial;}</style></head><body leftmargin=0 topmargin=20 marginwidth=0 marginheight=0 bgcolor="#DEE7E7"><table border="0" cellspacing="0" cellpadding="0" width="100%"> <tr> <td colspan="2" class="normaltext"><b>You have to check it out.</b><font color="red"><small>*</small></font></td> </tr></table></body>Do it on IE.Will work properly.My problem is on firebox of my local serverThank you for contribution on my troubleshooting
  8. it should work, but you can get rid of half of the html and stick it in the css<td class="normaltext" align="center"><B>Training</B></td>can be<td class="normaltext"><p>Training</p></td>and the css can be this:td.normaltext{font-size:11px;font-weight:bold;font-family:verdana,Arial;text-align:center;}you have 2 conflicting properties in your previous code. In the css, you say the font weight should be normal, but then you add <b></b> tags indicating the text should be bold. And the align in the td can be put into css which i've done. By default, text is black, so, unless you have another general style for the <p>, then that font will be black. Also, all text needs to be in some sort of block (i think?) tag, such as <p>, or <h2>, not <b>, which is just a style tag, if you see what i mean.Try the changes which i've made, and if they dont work, then you must have CSS turned off in your firefox browser or something else, as that code SHOULD work.:)
    I'll check out the last you've mentioned with my system administrator,While i'm not agree with you on your first of attributes overriding
  9. my style_sheet.csstd.normaltext{ font-size:11px; color:black; font-weight:normal; font-family:verdana,Arial;}I'm linking like this the css&html<link rel="stylesheet" href="style_sheet.css" type="text/css" media="screen">I'm using css like this<td class="normaltext" align="center"><B>Training</B></td>Works on IE but Not on MOZILLA

  10. Uploading a a file through an file element which having only id not name ie) input type='text' id='text_email'my attempt using $_SESSION['text_email']['name'] was useless.

×
×
  • Create New...