Jump to content

PeterPopper

Members
  • Posts

    28
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

PeterPopper's Achievements

Member

Member (2/5)

0

Reputation

  1. I want to show different content to different users from different states. So, if a visitor is visiting the website from California, I want to show California content. Likewise, if a user is visiting from any other State (say NY, Chicago, or anywhere), I want to show content relating to that State. Any suggestions? Thanks.
  2. Is this a tough one? Not hearing from anyone.
  3. I am using a PHP class (it is attached) for Google Analytics that I got from this link below: http://www.acleon.co.uk/?p=173 Unfortunately, it appears the Class has a PHP error: Warning: implode() [function.implode]: Invalid arguments passed in Galvanize.php on line 114 and line 181. This is line 114: setcookie('__utmc', implode('.', $this->UTMC), 0, $this->CookiePath, $this->getDomain()); Here is line 181: $urchinUrl .= '&utmcc=__utma%3D'.implode('.', $this->UTMA).'%3B%2B__utmz%3D'.implode('.', $this->UTMZ).'%3B'; I did not see UTMC and UTMZ declared anywhere in the Class. The class file is attached. Thanks for your help in advance. [attachment deleted by admin]
  4. I figured it out.
  5. dezkit, I thought you wanted the MySQL date entry format. Did you want to see the entire database structure? I only want to check the voted date from the database and compare it with today's date in PHP.
  6. Simply want to allow a user to vote once per calendar day, using MySQL to log votes. Thanks.
  7. Well, the table is currently empty to begin with, and maybe that is the problem. I am not sure.
  8. I have a database with one table and one row, the row is listNumber. I want to update and retrieve the value of listNumber but maintain just one row in the table. The problem is that if I use INSET, it works fine, but UPDATE, as in my code below, is not working. I don't want to use INSERT because it creates a new record each time. Update: $sql="UPDATE MainTable SET listNumber='$theNewCount'"; Retrieve: $sql="Select listNumber FROM MainTable; Thanks.
  9. Thanks very much, YourNameHere and andrewgauger.
  10. oni-kun, what would be your solution, since you noted that YourNameHere suggestion will not work. Thanks.
  11. I want to count visits to a page, and for every 200th visitor echo "You are a winner." What is the best way to do this? Thanks. I am willing to use a simple MySQL database, if necessary.
  12. Thanks, teamatomic, your suggestion did work, I had to take a second look.
  13. teamatomic, thanks for the reply. Is part of your code missing? I only see the SimpleXMLElement Object array output, I am not sure how you get that.
  14. $xmlVarMessyData = '<string xmlns="http://www.yahoo.org/"><endResult><ReturnCodes><Initial>Y</Initial><ShowSize>555</ShowSize><InstanNot/><UniqueId>c8e48dc3f2a1</UniqueId><MainNum>3f18e20016d</MainNum></ReturnCodes></endResult></string>'; $xmlVarMessyData = str_replace('<', '<', $xmlVarMessyData); $xmlVarMessyData = str_replace('>', '>', $xmlVarMessyData); $cleanData = simplexml_load_string ($xmlVarMessyData); echo "Clean Response ShowSize element: " . $cleanData->endResult->ShowSize; The code above is not echoing the 'ShowSize' element, I am getting a empty string. Thanks.
×
×
  • 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.