Jump to content

MarPlo

Members
  • Posts

    80
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://coursesweb.net

Profile Information

  • Gender
    Not Telling
  • Interests
    These websites:
    http://coursesweb.net/
    http://www.marplo.net

MarPlo's Achievements

Member

Member (2/5)

0

Reputation

  1. Hi, Is there any method to know which pages, links from sitemap are not indexed by google. For example, in webmaster tools it says 3200 links submited and 3125 indexed. I'm interesed to know which of sitemap links are not indexed, or which are indexed, if there is such method.
  2. Hi You can use $_GET['name'] to get the value associated to 'name' from Url. Example: $post_data = '... <Message>'. $_GET['Name'] .'-'. $_GET[Age'] .'</Message> ...';
  3. Hi, To get the ID from URL ("file.php?page=video?id=1") use $_GET in file.php. Then make Select in mysql with that id. if(isset($_GET['id'])) { $id = (int) $_GET['id']; $sql = "SELECT * FROM table WHERE id=$id LIMIT 1"; // rest of code ... }
  4. HI Try use the mysql rand() function: SELECT * FROM `table` ORDER BY RAND() LIMIT 0,1;Or look on the net for "mysql random", you'll find some good solutions.
  5. Hi, Try this verion of ShowSymbols() function in your code: function ShowSymbols() { CreateSymbolPopup (); if(symbolPopup.style.display == 'block') symbolPopup.style.display = 'none'; else symbolPopup.style.display = 'block'; }
  6. Hi, Try replace this line: $selected = ( date("n", $time)==(date("n")))? 'selected="selected"' : ""; With this: $selected = ( (date("n", $time)+1)==(date("n")))? 'selected="selected"' : "";
  7. Hi, My opinion is that if "about-us" is a folder, it is better to add slash at the end. <a href="/about-us/"></a>
  8. MarPlo

    Hello

    Hi, Welcome to this forum. It is a good place where to get answers about php issues, or to help others.
  9. Hi, Add the <script> after the HTML that is accessed in the script. Because the code of the script is executed in the same moment when is loaded, and not see the html element wich is after it. <input type="text" id="text_input"> <script type="text/javascript"> document.getElementById( 'text_input' ).onkeyup = function() { // do stuff } </script> It is indicated to have the <script> before the closing </body>, where all the other html elements are loaded.
  10. Hi You can save the info you want into a $_SESSION , then check if that session exists, and get its data. For the other info, select from database.
  11. Hi, In the Facebook documentation about Login the user with Facebook APP they say: "Because it requires you to include your App Secret you should not attempt to make this call client-side as that would expose this secret to all your app users. It is important that your App Secret is never shared with anyone". I understend it is about APP Secret, but what about the Developer ID? The developer ID is added in the URL address of the window for login the user with Facebook: https://www.facebook.com/dialog/oauth?client_id=APP_ID&redirect_uri=...&state=...&scope=... The APP_ID can be copied and used by anyone. I tryed with Javascript SDK, and with PHP SDK, but in both cases the developer ID appears in the address bar. I tryed also the get and display the page from that URL address using cURL, but of course not works. Is there any way to login the users in my web site using Facebook, without revealing the developer ID? Or, it doesn't matter if someone uses your Facebook APP ID?
  12. Hi, I changed the website URL from http://www to URL without "www", using also 301 redirect in htaccess. Now, all the +1 Google which was for the name with www disaperred. It is not such a big deal, but anyway; is there a solution to get the +1s votes from the old address with www to the address without "www"?
  13. Hi, I found that Google introduced a new tool for Webmasters, "Disavow Links", that enables you to disavow links to your site. If you've been notified of a manual spam action based on "unnatural links" pointing to your site, this tool can help you address the issue. If you haven't gotten this notification, this tool generally isn't something you need to worry about." Google says its engineers have been beta testing the new feature for weeks now, although there have been rumors of the impending new addition for months. The tool is now live, and you can find it by logging into your Webmaster Tools account and navigating to https://www.google.com/webmasters/tools/disavow-links-main
  14. Hi, Does changing the host too frequently affect the ranking of the web site in search engines. For example, if i change the hosting company 3 times in 2 months, does it affect the Page Rank? Because it is changing the server location, and also, each time the website cannot be accessed a few hours.
  15. Hi, Does it matter the location of the hosting server? For example, if I have a wensite in english, but the hosting server is in Spain, and I want target users from UK, USA, Canada; is it better in search engines to use a server from these countries? Also, the search engines check the server location, or it matters in Page Rank?
×
×
  • 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.