Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Siteezy

Members
  • Joined

  • Last visited

Everything posted by Siteezy

  1. This is my new site.. http://orlando-villa-rental-direct.com/ Blog also: http://blog.orlando-villa-rental-direct.com/ Any way of improving
  2. Hi, Invitation to submit your websites to our Official Link Directory. http://directory.siteezy.com/ Regards,
  3. No... These are not Dreamweaver templates, and we are a legitimate company, with many happy customers around the world.
  4. Hi all, Download your FREE Copy of the DIV Tag Layouts Solution Pack which includes 10 professionally design templates, developed by professional web designers using Div Tags and CSS. http://siteezy.com/DivTagLayouts.php
  5. I am trying to build backlinks to my website. But I have been doing a lot of SEO and whenever I use backlink checkers, the new links do not seem to be found. How do I make sure my backlinks are found by search engines? Thanks
  6. I have a WordPress Blog. In the admin Settings Panel I added a Page Title. The Page title is 'Siteezy Official Blog' This is good on my blogs home page, but on the posts pages it appears: 'Siteezy Official Blog >> Blog Archive >> Web Development Tips: 3 Pages Websites Should Have, But Most Don’t' The issue is I want it to appear differently on the post pages. For example: 'Web Development Tips: 3 Pages Websites Should Have, But Most Don’t' On post page I do not want the: ''Siteezy Official Blog >> Blog Archive >>' to appear. To see in action visit: http://siteezy.com/blog/ Could someone tell me why this is happening and how to fix it. Thanks
  7. Ok, I was not going to buy SeNuke. it was just an example. I am looking for a list of websites that can provide me with SEO Tools For example: http://www.opensiteexplorer.org/ Great for checking back links. If anyone can give me links to sites like these. This is what I want. I should of explained more. I only showed senuke, because I did not know it was black hat and I thought it was a software that did all of these things Thanks
  8. I am looking for some marketing software. Just wondering if anyone has any recommendations. I am looking for something along the lines of http://www.senuke.com/x/ But if possible a little cheaper
  9. Just a quick question about my websites stats and how it all works. I have been working on my sites PR and after almost a year I have PR 2. This is what I use to check my site: http://siteezy.com.hypestat.com/ I just don’t get how yahoo indexes my site (And other sites). It is always a struggle getting my site indexed by Yahoo. For example, Google has found 137,000 Links to my site, When Yahoo has just 97. What is this all about and is this a common issue with yahoo.
  10. Thanks, it works I really appreciate you help!
  11. Hi all, I have a question about wordpress and my blog (Used WordPress) I just made it yesterday and wanted to start posting, but after posting twice I noticed that on my home page (Of the Blog) it is showing the entire post, not just the first paragraph or small bit. I looked at other blogs on the net and they all seem to work with a small sample which people click to access or rwead the rest of the post. On mine the entire post is showing. I was wondering if this is a setting somwhere that I can fix. If anyone knows I would appreachate your input, I have not used WordPress before. To help you understand what I mean, here is my blog: http://siteezy.com/blog Thanks
  12. Ok, thanks for the help
  13. I am trying to use the Facebook Facepile plugin on my website, but it does not work. http://siteezy.com/AboutSiteezy.php I have added it to my page but it just is not showing? Not sure Why? I have no Idea why, it is not appearing on the Facebook Page itself ether. Is this an IE9 thing? Anyone else have this problem. http://developers.facebook.com/docs/reference/plugins/facepile/
  14. Thanks all. ShadowBox.js is exactly what I was looking for!
  15. Hi all, I have a YouTube video I want to display is a lightbox style pop out. I know lightbox does not support YouTube videos. So I was wondering if anyone knows about an alternative that works the same. To give you an idea of what I am talking about. I got the idea from the https://getcocoon.com/ website. If you notice in the What Is Cocoon section they have done it with a vimeo video. Hope someone can help.
  16. HI I have a script I am working on. I want it to export Data from my DB to an Excel Spreadsheet. <?php require_once('Connections/Connection.php'); ?> <?php if (!function_exists("GetSQLValueString")) { function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue; } $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue); switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": $theValue = ($theValue != "") ? intval($theValue) : "NULL"; break; case "double": $theValue = ($theValue != "") ? doubleval($theValue) : "NULL"; break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } } mysql_select_db($database_Connection, $Connection); $query_testdata = "SELECT * FROM testdata"; $testdata = mysql_query($query_testdata, $Connection) or die(mysql_error()); $row_testdata = mysql_fetch_assoc($testdata); $totalRows_testdata = mysql_num_rows($testdata);mysql_select_db($database_Connection, $Connection); $query_testdata = "SELECT * FROM testdata"; $testdata = mysql_query($query_testdata, $Connection) or die(mysql_error()); $row_testdata = mysql_fetch_assoc($testdata); $totalRows_testdata = mysql_num_rows($testdata); $query_testdata = "SELECT * FROM testdata ORDER BY ID DESC"; $testdata = mysql_query($query_testdata, $Connection) or die(mysql_error()); $row_testdata = mysql_fetch_assoc($testdata); $totalRows_testdata = mysql_num_rows($testdata); //feed the final array to our formatting function... $contents = getExcelData($testdata); $filename = "myExcelFile.xls"; //prepare to give the user a Save/Open dialog... header ("Content-type: application/octet-stream"); header ("Content-Disposition: attachment; filename=".$filename); //setting the cache expiration to 30 seconds ahead of current time. an IE 8 issue when opening the data directly in the browser without first saving it to a file $expiredate = time() + 30; $expireheader = "Expires: ".gmdate("D, d M Y G:i:s",$expiredate)." GMT"; header ($expireheader); //output the contents echo $contents; exit; ?> <?php function getExcelData($data){ $retval = ""; if (is_array($data) && !empty($data)) { $row = 0; foreach(array_values($data) as $_data){ if (is_array($_data) && !empty($_data)) { if ($row == 0) { // write the column headers $retval = implode("\t",array_keys($_data)); $retval .= "\n"; } //create a line of values for this row... $retval .= implode("\t",array_values($_data)); $retval .= "\n"; //increment the row so we don't create headers all over again $row++; } } } return $retval; } mysql_free_result($testdata); ?> I have two Issues. It does not seem to work. When I export it, I just seems to create a blank excel doc. Not Sure Why? I would also really like to be able to add a title to my excel doc, before my data shows I hope someone can help me and I would really appreciate it.
  17. It should be fine. Some people say that website PR can be affected if the server of your new host is in a different country to that of your old host. But after some research I came to the conclusion that as long as your new host does not have any down time, especially when your site gets crawled by search engines such as Google. It should be ok. As long as you have a good and reliable web host your PR should remain intact. I would also suggest you ensure page names remain the same on your new server as they were on your old, just so that any back links to your site still work. But if all you’re doing is transferring your old site to a new sever. That would not apply. Over all, your PR should be fine...
  18. Personally I like Option B I gives you a bit more to work with, and engages the user as they can interact with the page a bit more But, I would agree that A is a bit cleaner
  19. I want to make a blog I know that with forums software such as phpbb exists which is kind of what I am looking for. But in a BLOG version I just wanted to know if any knows about a software people use to make blogs. Thanks
  20. Hi, I have developed a search system for my website, whereby I add each page automatically as an admin. It works via a database, storing Titles, URL etc... However I was wondering if it would be possible to expand this, and make it search the web. The way I want to do it is. Create a script or bot/crawlers, that auto scan websites and add the pages to my database. I am not sure if this is even possible, but just wanted to ask? Thanks
  21. Thank you so much. I wanted to do this for a long time, so I really do appreciate this.
  22. Hi, I am making a simple form. I have some initial values in my form fields which disappear on click. Currently I have managed to make the initial value disappear on click, however I cannot find a way to make it return on click out if the user did not input a value. Here is my code <input type="text" name="textfield" id="textfield" value="User Name" onfocus="if (this.value=='User Name') this.value='';" /> Hope someone can help. Thanks in advance
  23. I need to create an install.php file that creates my database tables on live servers. Does anyone know and good tutorials or have any documentation on this. Thanks
  24. I have developed a Vacation Home Listings Website and I need an Availability Calendar that will work dynamically for not just one home/user but all in my database. Users need to be able to login and add/remove/edit/update their dates. My problem is I can't develop my own, and I cant find one on the internet that would work. I was just wondering if anyone knows a script, software, or anything that work or help to achieve this. Thanks...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.