Jump to content

phpmania1

Members
  • Posts

    25
  • Joined

  • Last visited

    Never

Everything posted by phpmania1

  1. If anyone could test the security of my login system and or database, and perhaps any coding f-ups.. thanks.
  2. SQL> CREATE TABLE your_field ( id int not null primary key, value varchar(20) ); SQL> INSERT INTO const_skills(id, value) VALUES (1, "PHP"); SQL> INSERT INTO your_field(id, value) VALUES (2, "MySQL"); SQL> INSERT INTO your_field(id, value) VALUES (3, "Zope"); SQL> INSERT INTO your_field(id, value) VALUES (4, "Perl"); SQL> INSERT INTO your_field(id, value) VALUES (5, "Javascript"); SQL> INSERT INTO your_field(id, value) VALUES (6, "JSP"); SQL> CREATE TABLE lookup_field ( id int not null auto_increment primary key, uid int, skill_id int ); <?php /* insert code to connect to your database here */ /* get the checkbox labels */ $skills = get_checkbox_labels("const_skills"); /* create the html code for a formatted set of checkboxes */ $html_skills = make_checkbox_html($skills, 3, 400, "skills[]"); ?> <html> <body> <br> <form name="skills" method="POST" action="insertskills.php"> Check off your web development skills: <? echo "$html_skills"; ?> <br> <input type="submit" value="Submit"> </form> </body> </html> <?php function get_checkbox_labels($table_name) { /* make an array */ $arr = array(); /* construct the query */ $query = "SELECT * FROM $table_name"; /* execute the query */ $qid = mysql_query($query); /* each row in the result set will be packaged as an object and put in an array */ while($row= mysql_fetch_object($qid)) { array_push($arr, $row); } return $arr; } /* Prints a nicely formatted table of checkbox choices. $arr is an array of objects that contain the choices $num is the number of elements wide we display in the table $width is the value of the width parameter to the table tag $name is the name of the checkbox array $checked is an array of element names that should be checked */ function make_checkbox_html($arr, $num, $width, $name, $checked) { /* create string to hold out html */ $str = ""; /* make it */ $str .= "<table width=\"$width\" border=\"0\">\n"; $str .= "<tr>\n"; /* determine if we will have to close add a closing tr tag at the end of our table */ if (count($arr) % $num != 0) { $closingTR = true; } $i = 1; if (isset($checked)) { /* if we passed in an array of the checkboxes we want to be displayed as checked */ foreach ($arr as $ele) { $str .= "<td><input type=\"checkbox\" name=\"$name\" value=\"$ele->id\""; foreach ($checked as $entry) { if ($entry == $ele->value) { $str .= "checked"; continue; } } $str .= ">"; $str .= "$ele->value"; if ($i % $num == 0) { $str .= "</tr>\n<tr>"; } else { $str .= "</td>\n"; } $i++; } } else { /* we just want to print the checkboxes. none will have checks */ foreach ($arr as $ele) { $str .= "<td><input type=\"checkbox\" name=\"$name\" value=\"$ele->id\">"; $str .= "$ele->value"; if ($i % $num == 0) { $str .= "</tr>\n<tr>"; } else { $str .= "</td>\n"; } $i++; } } /* tack on a closing tr tag if necessary */ if ($closingTR == true) { $str .= "</tr></table>\n"; } else { $str .= "</table>\n"; } return $str; } ?> <?php /* the function we call to insert. the $skills argument is the skills array that is sent to the script when the user hits the submit button */ function insert_field($uid, $skills) { /* first, we'll delete any entries this user already has in the table */ purge_lookup("lookup_field", $uid); /* now create the sql insert query */ $query = create_checkbox_query($skills, "lookup_field", $uid); /* execute the query */ mysql_query($query); } /* helper function for insert_field(). removes all rows in $table with $uid */ function purge_lookup($table, $uid) { $q = "DELETE FROM $table, WHERE uid = '$uid'"; mysql_query($q); } /* helper function for insert_field(). generates the sctual SQL query */ function create_checkbox_query($arr, $table, $uid) { $q = "INSERT INTO $table (uid, field_id) VALUES"; foreach ($arr as $check) { $q .= " ( $uid , $check )" . ","; } /* remove the last comma and return */ return substr($q, 0, -1); } ?> <?php /* builds a query to search for the field checked off in the $skills array */ function field_search($skills) { if (!empty($skills)) { $query = "SELECT DISTINCT user.username FROM user, const_field, lookup_field WHERE lookup_field.uid = user.id AND lookup_field.field_id = const_field.id "; $query .= " AND ("; foreach ($skills as $check) { $query .= " const_field.id = $check OR"; } /* remove the final OR */ $query = substr($query, 0, -2); $query .= ")"; $count = count($skills); $query .= " GROUP BY user.username HAVING count(user.username) >= $count"; $query .= ";"; return $query; } } ?> Theres a base. Change "field" and tweak it as needed.
  3. You don't want the text further than the box? Do you want a bigger text box, or the box to expand as text is inserted?
  4. Ok, DUH it is not my footer image it is the website content... still... help? lol.
  5. diyrealestate.leadhoster.com/open_realty/index.php My footer won't stay where it is supposed to be.. I have not changed anything and it was where it was supposed to be a second ago... help?
  6. I'm well aware, thanks fo rthe pointer. The free host is merely for the process of getting the site ready to publish on a purchased domain. My host is very fair and reliable so I do not mind a banner well I am configuring my page.
  7. Awesome thanks, I just finished a logo... although I don't think it looks very good. I'm having alot of trouble with the header/banner. I think I might use a logo with a slogan? footer text was annoying me so I made it small for the time being lol.
  8. Alright what do you think now? http://diyrealestate.leadhoster.com/open_realty Only lazuli template, & the banner is part of the free hoster for testing purposes.
  9. i took the banner off, im trying new ones. this is what i mean, #mrbanner { position:absolute; top:1px; bottom:1px; } header_right****** is not in my code, and index.html does not call for it there is no * header_right so do i add it into mr banner? #mrbanner { position:relative; position:absolute; top:1px; bottom:1px; } Or would i go to my index.html and call <div id mrbanner>?
  10. and header_right? should that not be part of mrbanner since there is nothing in my html that refers to banner_right?
  11. heh. didn't know you go into negatives Thanks, almost solved... just have to reload until i don't get hte banner!
  12. alright but, #mrbanner { position:relative; top:1px; left:180px; } check the site again.. it won't go any higher?
  13. i thought it wad too bright earlier? ahah. i'm using gimp, but apparently not properly. a tutorial would be muchly appreciated. i realize it is your opinion, i prefer brutal honesty. I didn't mean to come off offended in the previous posts. I will try the lavender. makes sense, a darker background draws attention to the background, and takes the attention off of the actual page. a lighter, passive background will give them nothing to look at.!
  14. So. Banner, Position: absolute. Free hoster. Google ad comes and goes. When google ad comes, banner good. when google ad goes, banner in the middle of the freakin page. Any pointers? diyrealestate.leadhoster.com/open_realty/index.php
  15. Hmm. the things you learn. I have a new question, about my banner. When I finally get one I like, I want it to STAY! STAY!... Now, position absolute makes it stay. position relative is a little finicky but will work. but, since this is a free host, they place an ad at the top of my screen which comes and goes when it feels. When it is there, "hey the headers where it is supposed to go" when the banner takes a break, "the banners in the middle of the screen?" any pointers... guess this is more of a css Q.
  16. hard to impress? lmao. hows the background now? where would you put a logo if it were your site? what style header should i use something basic.. but it still needs to look at least semi-professional.. how about a darker shaded, shadowed text?
  17. lol, sorry was going for more "sarcastic" than "a-hole". How about now Maq? Yes I am aware that the templates suck, I am only going to be using one, the one i was referring to is lazuli.
  18. gee thanks, i am aware that the contents consist of a<br> aha is the background really that bad? I was going for something... plain. working on the header still.
  19. Please checl out my site and let me know what you think about the layout/user friendlyness. it is far from finished but im curious as to **what else i need/shoul add** diyrealestate.leadhoster.com/open_realty/index.php Thanks.
  20. My background flickers when you scroll. any suggestions? http://diyrealestate.leadhoster.com/open_realty/index.php
  21. I have a website that I am trying to get configured and it is just not working with me. I'm sure no one wants to spend time looking over someone elses code lol, but i figured id try. Here is the css and the index.html.. Can anyone see whats wrong? for ane xample of my problem, - http://diyrealestate.leashoster.com/open_realty/index.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>{site_title}</title> {load_meta_description} {load_meta_keywords} <meta http-equiv="content-type" content="text/html;charset={charset}" /> <meta name="robots" content="index,follow" /> <meta name="Generator" content="Open-Realty" /> <link rel="shortcut icon" href="{template_url}/images/favicon.ico" /> <link href="{template_url}/style_main.css" rel="stylesheet" type="text/css" /> <!--[if lte IE 6]><link href="{template_url}/style_ie6.css" rel="stylesheet" type="text/css" /><![endif]--> <link rel="alternate" type="application/rss+xml" title="{company_name} - {lang_rss_lastmodified_link_title}" href="index.php?action=rss_lastmodified_listings" /> <link rel="alternate" type="application/rss+xml" title="{company_name} - {lang_rss_featured_link_title}" href="index.php?action=rss_featured_listings" /> {load_css_style_logo} <script type="text/javascript" src="{template_url}/js/target_links.js"></script> {load_js} {license_tag} </head> <body> <!-- bof STU NICHOLLS CSS LAYOUT (http://www.cssplay.co.uk/layouts/minimum.html) --> <div class="site_width"><div class="site_minwidth"><div class="site_layout"><div class="site_container"><div class="container"> <!-- bof MAIN TOTAL --> <div id="main_total"> <!-- bof TOTAL AREA --> <div id="total_area"> <!-- bof HEADER --> <div id="header"> <div id="header_left"> <div id="header_left_content"> <!-- bof LOGO --> <div id="logo"> </div> <!-- eof LOGO --> </div> <div id="header_right"> <div id="header_right_content"> <!-- bof MULTILINGUAL FLAGS --> <a href="./" title="English is the default language of this Website"><img src="{template_url}/images/flags/ca.png" alt="English is the default language of this Website" /></a> <!-- eof MULTILINGUAL FLAGS --> <!-- bof DATE --> <span id="date"> <script type="text/javascript"> <!-- var days=new Array(7); days[1]="{lang_monday}"; days[2]="{lang_tuesday}"; days[3]="{lang_wednesday}"; days[4]="{lang_thursday}"; days[5]="{lang_friday}"; days[6]="{lang_saturday}"; days[0]="{lang_sunday}"; var months=new Array(13); months[1]="{lang_january}"; months[2]="{lang_february}"; months[3]="{lang_march}"; months[4]="{lang_april}"; months[5]="{lang_may}"; months[6]="{lang_june}"; months[7]="{lang_july}"; months[8]="{lang_august}"; months[9]="{lang_september}"; months[10]="{lang_october}"; months[11]="{lang_november}"; months[12]="{lang_december}"; var time=new Date(); var ldays=days[time.getDay()]; var lmonth=months[time.getMonth() + 1]; var date=time.getDate(); var year=time.getYear(); if (year < 2000) year = year + 1900; document.write(ldays + "," + " " + lmonth + " " + date + "," + " " + year); // --> </script> </span> <!-- eof DATE --> </div> <div class="clear"></div> <!-- bof SLOGAN --> <span id="slogan">Do It Yourself Real Estate</span> <!-- eof SLOGAN --> </div> </div> </div> <!-- eof HEADER --> <!-- bof TOPBAR--> <div id="topbar"> <div id="topbar_left"> <div id="topbar_right"> <!-- bof HORIZONTAL MENU --> <div id="main_horiz_menu"> <ul> <li><a href="{url_index}">HOME</a></li> <li><a href="{page_link_3}">ABOUT US</a></li> <li><a href="{page_link_2}">CONTACT US</a></li> </ul> </div> <!-- eof HORIZONTAL MENU --> </div> </div> </div> <!-- eof TOPBAR--> <!-- bof MAIN CONTENT --> <div id="main_content"> <!-- bof TOP BORDERS SETTINGS --> <div id="main_content_top"><div id="main_content_top_left"><div id="main_content_top_right"></div></div></div> <!-- eof TOP BORDERS SETTINGS --> <!-- bof WEBSITE CONTENT --> <div id="website_content"> <!-- bof CONTENT AREA --> <div id="content_area"> <!-- bof LEFT CONTENT --> <div id="content_left"> <!-- bof BOXES ON LEFT CONTENT--> <div class="box menu_vertical"> <!-- bof BOX BORDERS SETTINGS --> <div class="box_top"><div class="box_top_left"><div class="box_top_right"></div></div></div> <!-- eof BOX BORDERS SETTINGS --> <!-- bof BOX CONTENT --> <div class="box_content"> <h6>MENU</h6> <ul class="menu"> <li><a href="{url_search_results}" title="View All Listings">View All Listings</a></li> <li><a href="{url_search}" title="Search Listings">Search Listings</a></li> <li><a href="{addon_userpage_link}</a></li> <li><a href="{url_view_agents}" title="">View Agents</a></li> <li><a href="{url_view_calculator}" onclick="window.open(this.href,'_blank','location=0,status=0,scrollbars=1,toolbar=0,menubar=0,width=500,height=520');return false" title="Loan Calculators">Loan Calculators</a></li> <!-- bof HIDE IF MEMBER, AGENT OR ADMIN IS LOGGED --> {check_guest} <li><a href="{url_member_signup}" title="Member Signup">Member Signup</a></li> <li><a href="{url_agent_signup}" title="Agent Signup">Agent Signup</a></li> <li><a href="{url_member_login}" title="Login">Login</a></li> {/check_guest} <!-- eof HIDE IF MEMBER, AGENT OR ADMIN IS LOGGED --> </ul> </div> <!-- eof BOX CONTENT --> <!-- bof BOX BORDERS SETTINGS --> <div class="box_bottom"><div class="box_bottom_left"><div class="box_bottom_right"></div></div></div> <!-- eof BOX BORDERS SETTINGS --> </div> <!-- bof SHOW ONLY IF MEMBER, AGENT AND ADMIN IS LOGGED --> {check_member} <div class="box menu_vertical"> <!-- bof BOX BORDERS SETTINGS --> <div class="box_top"><div class="box_top_left"><div class="box_top_right"></div></div></div> <!-- eof BOX BORDERS SETTINGS --> <!-- bof BOX CONTENT --> <div class="box_content"> <h6>USER MENU</h6> <ul class="menu"> <!-- bof HIDE IF ADMIN IS LOGGED --> {!check_admin} <!-- bof HIDE IF AGENT IS LOGGED --> {!check_agent} <li><a href="{url_view_favorites}" title="View Favorites">View Favorites</a></li> <li><a href="{url_view_saved_searches}" title="Saved Searches">Saved Searches</a></li> {/!check_agent} <!-- eof HIDE IF AGENT IS LOGGED --> <!-- bof SHOW ONLY IF AGENT IS LOGGED --> {check_agent} <li><a href="{baseurl}/admin/index.php?action=add_listing_property_class" title="Add Listing">Add Listing</a></li> <li><a href="{baseurl}/admin/index.php?action=edit_my_listings" title="Edit Listings">Edit Listings</a></li> {/check_agent} <!-- eof SHOW ONLY IF AGENT IS LOGGED --> <li><a href="{url_edit_profile}" title="Edit my Account">Edit my Account</a></li> {/!check_admin} <!-- eof HIDE IF ADMIN IS LOGGED --> <!-- bof SHOW ONLY IF ADMIN IS LOGGED --> {check_admin} <li><a href="{baseurl}/admin/" title="Admin Area">Admin Area</a></li> {/check_admin} <!-- eof SHOW ONLY IF ADMIN IS LOGGED --> <li><a href="{url_logout}" title="Logout">Logout</a></li> </ul> </div> <!-- eof BOX CONTENT --> </div> {/check_member} <!-- eof SHOW ONLY IF MEMBER, AGENT AND ADMIN IS LOGGED --> </div> <!-- eof BOXES ON LEFT CONTENT --> </div> <!-- eof LEFT CONTENT --> <!-- bof RIGHT CONTENT --> <div id="content_right"> <!-- bof OPEN-REALTY CONTENT TAG --> <div id="or_content_tag"> {content} </div> <!-- eof OPEN-REALTY CONTENT TAG --> </div> <!-- eof RIGHT CONTENT --> <div class="clear"></div> </div> <!-- eof CONTENT AREA --> <div class="clear"></div> </div> <!-- eof WEBSITE CONTENT --> <!-- bof BOTTOM BORDERS SETTINGS --> <div id="main_content_bottom"><div id="main_content_bottom_left"><div id="main_content_bottom_right"></div></div></div> <!-- eof BOTTOM BORDERS SETTINGS --> </div> <!-- eof MAIN CONTENT --> </div> <!-- eof TOTAL AREA --> <!-- bof FOOTER --> <div id="footer"> <div id="footer_left"> <div id="footer_right"> <div> <p>Powered by <a href="http://open-realty.org" title="Open-Realty®" rel="external">Open-Realty</a><span class="reg_mark_h2">&#174;</span> a product of <a href="http://www.transparent-tech.com" title="Transparent Technologies, Inc." rel="external">Transparent Technologies, Inc.</a> - ©2003-2008 - All Rights Reserved.</p> <p>Use of this software is free under the terms of the Transparent Technologies <a href="http://open-realty.org/license_info.html" title="Transparent Technologies, Inc." rel="external">License</a></p> <p>Use of this website and information available therein is subject to the <a href="{page_link_4}" title="Legal Notice and Disclaimer">Legal Notice and Disclaimer</a></p> </div> </div> </div> </div> <!-- eof FOOTER --> </div> <!-- eof MAIN TOTAL --> </div></div></div></div></div> {load_js_last} </body> </html> ****************************** And this is the CSS, ****************************** <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>{site_title}</title> {load_meta_description} {load_meta_keywords} <meta http-equiv="content-type" content="text/html;charset={charset}" /> <meta name="robots" content="index,follow" /> <meta name="Generator" content="Open-Realty" /> <link rel="shortcut icon" href="{template_url}/images/favicon.ico" /> <link href="{template_url}/style_main.css" rel="stylesheet" type="text/css" /> <!--[if lte IE 6]><link href="{template_url}/style_ie6.css" rel="stylesheet" type="text/css" /><![endif]--> <link rel="alternate" type="application/rss+xml" title="{company_name} - {lang_rss_lastmodified_link_title}" href="index.php?action=rss_lastmodified_listings" /> <link rel="alternate" type="application/rss+xml" title="{company_name} - {lang_rss_featured_link_title}" href="index.php?action=rss_featured_listings" /> {load_css_style_logo} <script type="text/javascript" src="{template_url}/js/target_links.js"></script> {load_js} {license_tag} </head> <body> <!-- bof STU NICHOLLS CSS LAYOUT (http://www.cssplay.co.uk/layouts/minimum.html) --> <div class="site_width"><div class="site_minwidth"><div class="site_layout"><div class="site_container"><div class="container"> <!-- bof MAIN TOTAL --> <div id="main_total"> <!-- bof TOTAL AREA --> <div id="total_area"> <!-- bof HEADER --> <div id="header"> <div id="header_left"> <div id="header_left_content"> <!-- bof LOGO --> <div id="logo"> </div> <!-- eof LOGO --> </div> <div id="header_right"> <div id="header_right_content"> <!-- bof MULTILINGUAL FLAGS --> <a href="./" title="English is the default language of this Website"><img src="{template_url}/images/flags/ca.png" alt="English is the default language of this Website" /></a> <!-- eof MULTILINGUAL FLAGS --> <!-- bof DATE --> <span id="date"> <script type="text/javascript"> <!-- var days=new Array(7); days[1]="{lang_monday}"; days[2]="{lang_tuesday}"; days[3]="{lang_wednesday}"; days[4]="{lang_thursday}"; days[5]="{lang_friday}"; days[6]="{lang_saturday}"; days[0]="{lang_sunday}"; var months=new Array(13); months[1]="{lang_january}"; months[2]="{lang_february}"; months[3]="{lang_march}"; months[4]="{lang_april}"; months[5]="{lang_may}"; months[6]="{lang_june}"; months[7]="{lang_july}"; months[8]="{lang_august}"; months[9]="{lang_september}"; months[10]="{lang_october}"; months[11]="{lang_november}"; months[12]="{lang_december}"; var time=new Date(); var ldays=days[time.getDay()]; var lmonth=months[time.getMonth() + 1]; var date=time.getDate(); var year=time.getYear(); if (year < 2000) year = year + 1900; document.write(ldays + "," + " " + lmonth + " " + date + "," + " " + year); // --> </script> </span> <!-- eof DATE --> </div> <div class="clear"></div> <!-- bof SLOGAN --> <span id="slogan">Do It Yourself Real Estate</span> <!-- eof SLOGAN --> </div> </div> </div> <!-- eof HEADER --> <!-- bof TOPBAR--> <div id="topbar"> <div id="topbar_left"> <div id="topbar_right"> <!-- bof HORIZONTAL MENU --> <div id="main_horiz_menu"> <ul> <li><a href="{url_index}">HOME</a></li> <li><a href="{page_link_3}">ABOUT US</a></li> <li><a href="{page_link_2}">CONTACT US</a></li> </ul> </div> <!-- eof HORIZONTAL MENU --> </div> </div> </div> <!-- eof TOPBAR--> <!-- bof MAIN CONTENT --> <div id="main_content"> <!-- bof TOP BORDERS SETTINGS --> <div id="main_content_top"><div id="main_content_top_left"><div id="main_content_top_right"></div></div></div> <!-- eof TOP BORDERS SETTINGS --> <!-- bof WEBSITE CONTENT --> <div id="website_content"> <!-- bof CONTENT AREA --> <div id="content_area"> <!-- bof LEFT CONTENT --> <div id="content_left"> <!-- bof BOXES ON LEFT CONTENT--> <div class="box menu_vertical"> <!-- bof BOX BORDERS SETTINGS --> <div class="box_top"><div class="box_top_left"><div class="box_top_right"></div></div></div> <!-- eof BOX BORDERS SETTINGS --> <!-- bof BOX CONTENT --> <div class="box_content"> <h6>MENU</h6> <ul class="menu"> <li><a href="{url_search_results}" title="View All Listings">View All Listings</a></li> <li><a href="{url_search}" title="Search Listings">Search Listings</a></li> <li><a href="{addon_userpage_link}</a></li> <li><a href="{url_view_agents}" title="">View Agents</a></li> <li><a href="{url_view_calculator}" onclick="window.open(this.href,'_blank','location=0,status=0,scrollbars=1,toolbar=0,menubar=0,width=500,height=520');return false" title="Loan Calculators">Loan Calculators</a></li> <!-- bof HIDE IF MEMBER, AGENT OR ADMIN IS LOGGED --> {check_guest} <li><a href="{url_member_signup}" title="Member Signup">Member Signup</a></li> <li><a href="{url_agent_signup}" title="Agent Signup">Agent Signup</a></li> <li><a href="{url_member_login}" title="Login">Login</a></li> {/check_guest} <!-- eof HIDE IF MEMBER, AGENT OR ADMIN IS LOGGED --> </ul> </div> <!-- eof BOX CONTENT --> <!-- bof BOX BORDERS SETTINGS --> <div class="box_bottom"><div class="box_bottom_left"><div class="box_bottom_right"></div></div></div> <!-- eof BOX BORDERS SETTINGS --> </div> <!-- bof SHOW ONLY IF MEMBER, AGENT AND ADMIN IS LOGGED --> {check_member} <div class="box menu_vertical"> <!-- bof BOX BORDERS SETTINGS --> <div class="box_top"><div class="box_top_left"><div class="box_top_right"></div></div></div> <!-- eof BOX BORDERS SETTINGS --> <!-- bof BOX CONTENT --> <div class="box_content"> <h6>USER MENU</h6> <ul class="menu"> <!-- bof HIDE IF ADMIN IS LOGGED --> {!check_admin} <!-- bof HIDE IF AGENT IS LOGGED --> {!check_agent} <li><a href="{url_view_favorites}" title="View Favorites">View Favorites</a></li> <li><a href="{url_view_saved_searches}" title="Saved Searches">Saved Searches</a></li> {/!check_agent} <!-- eof HIDE IF AGENT IS LOGGED --> <!-- bof SHOW ONLY IF AGENT IS LOGGED --> {check_agent} <li><a href="{baseurl}/admin/index.php?action=add_listing_property_class" title="Add Listing">Add Listing</a></li> <li><a href="{baseurl}/admin/index.php?action=edit_my_listings" title="Edit Listings">Edit Listings</a></li> {/check_agent} <!-- eof SHOW ONLY IF AGENT IS LOGGED --> <li><a href="{url_edit_profile}" title="Edit my Account">Edit my Account</a></li> {/!check_admin} <!-- eof HIDE IF ADMIN IS LOGGED --> <!-- bof SHOW ONLY IF ADMIN IS LOGGED --> {check_admin} <li><a href="{baseurl}/admin/" title="Admin Area">Admin Area</a></li> {/check_admin} <!-- eof SHOW ONLY IF ADMIN IS LOGGED --> <li><a href="{url_logout}" title="Logout">Logout</a></li> </ul> </div> <!-- eof BOX CONTENT --> </div> {/check_member} <!-- eof SHOW ONLY IF MEMBER, AGENT AND ADMIN IS LOGGED --> </div> <!-- eof BOXES ON LEFT CONTENT --> </div> <!-- eof LEFT CONTENT --> <!-- bof RIGHT CONTENT --> <div id="content_right"> <!-- bof OPEN-REALTY CONTENT TAG --> <div id="or_content_tag"> {content} </div> <!-- eof OPEN-REALTY CONTENT TAG --> </div> <!-- eof RIGHT CONTENT --> <div class="clear"></div> </div> <!-- eof CONTENT AREA --> <div class="clear"></div> </div> <!-- eof WEBSITE CONTENT --> <!-- bof BOTTOM BORDERS SETTINGS --> <div id="main_content_bottom"><div id="main_content_bottom_left"><div id="main_content_bottom_right"></div></div></div> <!-- eof BOTTOM BORDERS SETTINGS --> </div> <!-- eof MAIN CONTENT --> </div> <!-- eof TOTAL AREA --> <!-- bof FOOTER --> <div id="footer"> <div id="footer_left"> <div id="footer_right"> <div> <p>Powered by <a href="http://open-realty.org" title="Open-Realty®" rel="external">Open-Realty</a><span class="reg_mark_h2">&#174;</span> a product of <a href="http://www.transparent-tech.com" title="Transparent Technologies, Inc." rel="external">Transparent Technologies, Inc.</a> - ©2003-2008 - All Rights Reserved.</p> <p>Use of this software is free under the terms of the Transparent Technologies <a href="http://open-realty.org/license_info.html" title="Transparent Technologies, Inc." rel="external">License</a></p> <p>Use of this website and information available therein is subject to the <a href="{page_link_4}" title="Legal Notice and Disclaimer">Legal Notice and Disclaimer</a></p> </div> </div> </div> </div> <!-- eof FOOTER --> </div> <!-- eof MAIN TOTAL --> </div></div></div></div></div> <!-- eof STU NICHOLLS CSS LAYOUT (http://www.cssplay.co.uk/layouts/minimum.html) --> {load_js_last} </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.