Messages - The Code Queryer [ switch to compact view ]

Pages: prev1 2 3 4 [5] 6 7next
21
Hahahahahahahahahhaahhahahahahahahahahahahahahahahahahahhaahhahahahahahahahahahahahahahahahahahhaahhahahahahahahahahahahahahahahahahahhaahhahahahahahahahahahahahahahahahahahhaahhahahahahahahahahahahahahahahahaha omg no this is such a bad idea.....who the hell would want to share their browsing history for the world to see?

Also...if mouser tried to implement this to DC, I would personally fly to Illinois to throat punch him.
-Stephen66515 (April 06, 2019, 01:22 PM)

I would. Not all my browsing history but some. Look at it this way. You have total 1 million followers from twitter, youtube, facebook, etc. They see what you post. Ask them, if they'd be interested to see what you browse. THEY WOULD.
Now, when these 1 million head-off to the first page you are browsing, providing they are from English speaking countries you would earn $5,000 on the spot.
When on the 2nd minute you headover to the 2nd page on the same website or a different website, then when those 1 million trail you again to the 2nd page you are currently at, then you'd earn another $5k and so on. Why ? Because, all your browsing history links would be converted to interstitial ad links (adfly, linkbucks.com, etc. links). Therefore, whenever they click the same links you are browsing, they won't go to the original links but converted links. When they click these links they will see 5 secs ads and you will earn money after 5 secs of them clicking the links.
Believe me you, if celebrities allowed the world to follow them like this then they would earn by the minute nearly non-stop getting followed from link to link. They will earn more than what they earn acting in movies or releasing music, etc.
This is the future.

Now, I believe you will change your mind and say you will NOW allow others to see your browsing history if it's gonna earn you tonnes of money like that. In short, all your links from your browsing history would be converted to adfly etc. links before being publicized publicly. The more the public view your browsing history and click those adfly etc. infested links then the more money you earn! Now, you wanna go public with your browsing history.! Don't you ? Lol!  :D :up: :Thmbsup: :P

22
Post New Requests Here / Re: IDEA: Social Browsing History Website
« on: April 06, 2019, 01:42 PM »
Now, does anybody else think this is a bad idea ?  :down:
I think it is a good idea.  :Thmbsup:
Read my next post to learn why!

23
Folks,

Have you seen websites like appsgeyser.com and the like where they help you build Android Mobile Apps ? You can build your own Android Browser.
I've seen a handful. But guess what ? None of them allow you to build an Android Browser that logs what your browser users are browsing. It should log the webpages visited and in the background, without annoying or disturbing the user, send the log to your mysql database.
The user should see menu->Settings.
In this Settings screen, user should fill-in fields that asks for user's website's mysql database. Database, to where the users browsing history logs should be sent.
So, let us say, the Settings Page looks like this:

Domain:
Mysql User:
Mysql User Password:
Mysql Database Name:
Mysql Table Name:

Let us say the Android Browser is called "Look".
Now, let us imagine user filled-in fields like this:

Domain: user-domain.com
Mysql User: user
Mysql User Password: password
Mysql Database Name: look_browser
Mysql Table Name: users_browsing_histories

Let us say, user now headed off to google. Once the google page loads, the Android Browser should submit data like this to the user's website's mysql database:

(Imagine the following are column names):
id|date_and_time|username|url|page_title|meta_keywords|meta_descriptions

A scenario how my mysql db records will look like:
id|date_and_time|username|url|page_title|meta_descriptions|meta_keywords|
----------------------------------------------------------------------------------------
0|04/07/2019|idea_man|donationcoder.com/forum/index.html|programming forum|A programming Forum|php,
                                                                                                                                                           javascript,
                                                                                                                                                           programming,
                                                                                                                                                           forum

Now, whenever I am somewhere and my fone is not with me. I can just logon with my laptop to my website and checkout my browsing history for any reason. Also, others can checkout my browsing history via my website.

Anyway, who's gonna build this Android Browser ? Don't forget to credit me for the idea giver.

Now, who's gonna build this and give us all a copy ? If you know of any website like appsgeyser.com that allows us to build such an Android Browser App then say so here! Because, I have found none so far!

24
Post New Requests Here / IDEA: Social Browsing History Website
« on: April 06, 2019, 01:08 PM »
Folks,

Did you use del.icio.us a dacade ago ?
You registered your member account and once you logged in you saw a button. When you clicked that button, del.icio.us grabbed all your bookmarks and uploaded the links to the website. Now, others can see your bookmarks as your favourite links were displayed under your username. Anyone doing your Username search, found all your bookmarks presented in google like presentation.

I want to build similar. But instead of the script uploading all your bookmarks it should upload all your browsing histories. That way, others doing your Username search can now see what you browsed. Hold down the CTRL button and press the H button to see your browsing history. All that needs to be uploaded.
This is gonna be big! All this forum members can signup as members and upload their browsing histories and each of us can see what the other has been browsing online. Ofcourse, there should be an option to delete links from the uploaded mysql database.
I have a feeling this will have to be clientside programming for the script to grab and upload all the users browsing histories from his web browser.
We can add this feature to this forum.
If you like my idea then get the owners of this forum to read this thread. And comment here about my great idea.
Whoever likes my idea, do not forget to contribute your sample code here for others to learn from.

25
Developer's Corner / Sql Syntax Error
« on: April 06, 2019, 12:57 PM »
Folks,

What is wrong with my php mysql query ? Trying to get the script to search my database and show results in pagination format. Using mysqli and procedural styling here.
$total_pages = $conn->query("SELECT * FROM browsing_histories WHERE username = ?")->num_rows;
What is wrong with my php mysql query ?

I get this error:
Fatal error: Uncaught mysqli_sql_exception: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '?' at line 1 in C:\xampp\htdocs\test\search.php:31 Stack trace: #0 C:\xampp\htdocs\test\search.php(31): mysqli->query('SELECT * FROM b...') #1 {main} thrown in C:\xampp\htdocs\test\search.php on line 31

If I remove the "WHERE username = ?" part and make it like the following then I get no error.

$total_pages = $conn->query("SELECT * FROM browsing_histories WHERE username = ?")->num_rows;

But making it like this means getting it to pull all rows from the table. I do not want that. I want to pull matching rows in the "username" column.
How to fix this ? How should it have been ?

Pages: prev1 2 3 4 [5] 6 7next
Go to full version