
equipment
Members-
Posts
52 -
Joined
-
Last visited
Never
Everything posted by equipment
-
I am looking to use a laptop (Windows) and a mini-pc (Linux) with one screen and keyboard. Is there a switch device as a solution to be found? Where I can simply switch it back and forth?
-
Print List of Table with "SELECT DISTINCT"
equipment replied to equipment's topic in PHP Coding Help
Thanks a lot, it is a detail I missed, which does happen to me. I am wondering why does the while loop work when the assignment is put into the conditional checking? What happens if it is simply the variable? -
Print List of Table with "SELECT DISTINCT"
equipment replied to equipment's topic in PHP Coding Help
I tried different approach, I just could not get it to work, though the SQL statement does work I've checked it with MySQL. For example: $sql_tags = $sql_assoc['category']; while($sql_tags) { echo $sql_tags; } Though it fails and it also causes an endless loop. -
I am trying to print the list of a table which I requested with "SELECT DISTINCT" as below $db_connect = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME); $sql_get = "SELECT DISTINCT category FROM con"; $sql_run = mysqli_query($db_connect, $sql_get) or mysqli_error($db_connect); $sql_assoc = mysqli_fetch_assoc($sql_run); What is now needed to print the list of the table data by this conditions? I tried the while loop, but I seem to approach wrong, and get endless loops or errors.
-
I want to build a user entered tagging system. Where the tag does get assigned to the submission of the user. Though, finally I want all available tags to be requested only once per tag off the database and outputted on the page. How would I be able to achieve this in regards to SQL statements?
-
I actually do know how to do it in theory, I would like to see in example in action. Video, or a text tutorial with photos would be cool, I just want to see the process with my eyes.
-
I am looking for a question answer platform, with no bells and whistles, and no use of graphics, quite simple and solely text in PHP, any suggestions?
-
Is there a quick way to disable the auto updating of Chrome? I am not looking to hack it.
-
I have following code example div#nav_wrapper { width: 700px; margin: 0 auto 0; } div#nav { float: right; } The wrapper is collabing while the div inside the wrapper is floating far till to the side of the window (web browser). Any ideas how to have the wrapper keep the div inside of it in position, without letting it float away.
-
Any good conceptions you'd like to share for my purpose of sharing my email address for contacting purposes on the web, besides the usual way of using private messages and similar?
-
I am wondering when sharing the email address per JPEG image file for example, can bots still scan it and approach you through that address? Because I did so, and have gotten a constellated email as the first and then one poor afterwards.
-
When Programming Do You Keep Protocol of Every Decision Made?
equipment replied to equipment's topic in Miscellaneous
Suggestions for my case? It is a project I am reckless with, it is one of the quick projects you mock up put up and want see what will happen with it. Quick decisive changes are pre-programmed. -
The title describes the question. If you do so, how do you keep protocol of the decisions made? How would such protocol look like in a way that one could come back half a year later and still know exactly what has happened and which decisions have been made so that one can follow back the progress of the project. I would appreciate tips.
-
Thank you a lot, it is something I broke my head over and still can not make sense out of the situation. Why does this problem occur, why is there a difference between the localhost server an the web host server? The one I can think of the difference between Linux and Windows. I am wondering do you think I would experience these type of problems on Linux as well?
-
When the front page of the project is visited, the CSS path will be referenced properly and the stylesheets will also work http://localhost/myroot/denbix/ with the stylesheets reference example <link rel="stylesheet" type="text/css" href="view/style.css" /> Though, the same will not work on a sub page of the project, with the following example path (and with the same stylesheet reference in the header) http://localhost/myroot/denbix/model/contribution/knuffix_list.php?cat=All I use Apache 2.2.17 with Windows. Any ideas why this problem is occurring and how to solve it?
-
Nevermind, the problem is a different one...
-
Is there a search module in PHP best suited for a lyrics website you would recommend? Perhaps with a specification functionality in form of a drop down menu - e.g. artist name, song title, genre ? Any recommendations?
-
Is there a recommended way to have an easy way to deal with the mass of login data across the many websites? For example something like a password manager as an add on for Firefox? Something which I would use for all the other websites, whereas the critical websites are put aside? QuickPassword (the add on) is something I found which works with a copy & paste method. Anything else? I would like the set to be saveable and re-useable in a different system again as well, so it's frankly flexible.
-
Which are the most stable versions of the web browsers: Firefox, Chrome, Safari ?
-
First off all, are there resources available for perfected and proper data management and also the naming of data and everything which has to do with the organization of it, mainly text, photos, audio and similar data? I am simply in need to have my own system of data collection and organization. Also are there any data management software solutions available? Which do allow a sorting and finding very quickly and efficiently with the associations in between files still intact and traceable? Tagging and notation to the data should be possible. Management of URLs and text excerpts should be possible as well.