Jump to content

DimisD

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

DimisD's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Thank you very much kittrellbj!! Works fine!
  2. Hi there, I have a "view.php" page that displays MySql database records for the site visitors. Inside this page i require one page tha has the database connections info: <?php require_once('Connections/connx_news.php'); ?> --------------------- connx_news.php ---------------------- <?php # FileName="Connection_php_mysql.htm" # Type="MYSQL" # HTTP="true" $hostname_connx_news = "localhost"; $database_connx_news = "db_name"; $username_connx_news = "usr_name"; $password_connx_news = "pass"; $connx_news = mysql_pconnect($hostname_connx_news, $username_connx_news, $password_connx_news) or trigger_error(mysql_error(),E_USER_ERROR); ?> --------------------- - ---------------------- How can i restrict access to the Connections folder? ??? If i do the folder password protected it asks for username & password. Thank you in anticipation! PS. I created the webpage with dreamweaver
  3. Hi there, Can somebody please fix the code bellow? I have 2 iframes and i want to reload them with the buttons bellow them. Also, if it is easy, i wonder if you can make three more functions : refresh, history+, history- thank you! >
  4. Hi there, -> Friend ScotDiddle, i put the default css in the demo page, but again it didn't work????? Am i doing something wrong?? ->Friend ToonMariner, what i want is: the css in the code below to work as the css in the page http://www.brainjar.com/css/tabs/demo.html Can you help?? thank you 2!!
  5. Hi, I have the following code, but the css doesn't work all right. Can someone find what is wrong??? The css is borrowed from an example in this site: http://www.brainjar.com/css/tabs/demo.html Thank you Here is my code:
  6. Hi, is there someone who can fix this custom google search engine for me please? The problem is that i can not pass the href values to the Form action. thank you. <HTML> <HEAD> <TITLE>custom google search</TITLE> <META http-equiv=Content-Type content="text/html; charset=utf-8"> <META content="MSHTML 6.00.2900.2912" name=GENERATOR> <style> .tabInactive { FONT-SIZE: 12px; COLOR: #ffffff; FONT-FAMILY: Verdana; TEXT-DECORATION: underline} .tabActive { FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: Verdana; TEXT-DECORATION: none} </style> <SCRIPT language=javascript> function toggleTab ( searchType, qcat, idName ) { var tabs = document.getElementsByTagName('a'); for( var i=0; i<tabs.length; i++ ) { var tabi = tabs; if ( tabi.id == idName && tabi.className == "tabInactive" ) { tabi.className="tabActive";} else if ( tabi.id == idName && tabi.className=="tabActive" ) { tabi.className="tabActive";} else if ( tabi.className=="tabActive" ) { tabi.className="tabInactive";} } } </SCRIPT> </HEAD> <BODY > <FORM name=f action="http://www.google.com/search" method="get" target="_blank"> <TABLE border=0 cellPadding=0 cellSpacing=0 bgcolor="#88a3a9"> <TBODY> <TR> <TD colSpan=2><DIV id=navTab> <A class=tabActive id=sbtWeb onClick="toggleTab('Web','web','sbtWeb'); return false;" href="http://www.google.com/search"> <DIV style="DISPLAY: inline">Web</DIV></A> <SPAN class=tabDivider><SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"> </SPAN>|<SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"></SPAN></SPAN> <A class=tabInactive id=sbtImages onClick="toggleTab('Image', 'images','sbtImages'); return false;" href="http://images.google.com/images"> <DIV style="DISPLAY: inline">Images</DIV></A> <SPAN class=tabDivider><SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"></SPAN>| <SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"></SPAN></SPAN> <A class=tabInactive id=sbtVideo onClick="toggleTab('Video', 'smd','sbtVideo'); return false;" href="http://video.google.com/videosearch"> <DIV style="DISPLAY: inline">Video</DIV> </A> <SPAN class=tabDivider><SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"> </SPAN>|<SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"></SPAN></SPAN> <A class=tabInactive id=sbtMaps onClick="toggleTab('Maps', 'map','sbtMaps'); return false;" href="http://maps.google.com/maps"> <div style="display: inline;">Maps</div></A> <SPAN class=tabDivider><SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"></SPAN>| <SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"></SPAN></SPAN> <A class=tabInactive id=sbtBlogs onClick="toggleTab('Blogs', 'blg','sbtBlogs'); return false;" href="http://blogsearch.google.com/blogsearch"> <DIV style="DISPLAY: inline">Blogs</DIV> </A><SPAN class=tabDivider><SPAN class=spacer style="WIDTH: 6px; HEIGHT: 1px"></SPAN></SPAN></DIV></TD> </TR> <TR> <TD><INPUT style="WIDTH: 351px" name=q> </TD> <TD vAlign=center> <DIV id=msSearchSubmit> <INPUT type=submit value="search" alt=Search> </DIV> </TD> </TR> <TR> <TD colSpan=2> </TD> </TR> </TBODY> </TABLE> </FORM> </BODY> </HTML>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.