- 0
MySQL with PHP help
Asked by
Jose_49,
-
Recently Browsing 0 members
- No registered users viewing this page.
-
Posts
-
By notta · Posted
Yea I don't think so. -
By David Uzondu · Posted
Euro-Office must default to ODF to be considered "genuinely European", LibreOffice argues by David Uzondu Euro-Office is a web-based collaborative office suite that positions itself as a "European sovereign alternative" to American tech companies, backed by a coalition of developers including Nextcloud, IONOS, Abilian, BTactic, OpenProject, and, more recently, Tuta. The project officially went live a couple of days ago, but not before drawing heavy fire from LibreOffice developers, who called the marketing claim that Euro-Office represents the "first open-source office suite developed in Europe" a deceptive historical inaccuracy because projects like OpenOffice and LibreOffice existed decades earlier. Now that the project has launched, LibreOffice is back with another complaint, arguing that Euro-Office cannot consider itself "genuinely European" while it pushes proprietary Microsoft defaults on users. Euro-Office had promised to improve the OpenDocument Format (ODF) back in April, but the current release still plagues users with several technical failures. For instance, the suite lacks an admin setting to enforce ODF, and mobile editors completely block ODF saves, forcing files into Microsoft's OOXML formats. Some configurations force files into read-only mode, while editing frequently corrupts document formatting or erases data. LibreOffice thinks that merely supporting a format as an afterthought does not make you a sovereign alternative, as file formats are the battleground where" digital sovereignty is won or lost." The road to the first stable release of Euro-Office has been quite bumpy due to an aggressive public fallout with OnlyOffice, from which the coalition originally forked the project. OnlyOffice struck back by accusing the coalition of violating copyright terms under its AGPLv3 branding requirements by stripping the original branding anyway and forking the code. Getting Euro-Office up and running is a bit wonky (at least for non-technical users), as there is no direct installer to grab off the web. The easiest way we learnt is by using Docker. First, pull the official Euro-Office image from the GitHub Container Registry: docker pull ghcr.io/euro-office/documentserver:latest Then, run the container with active ports and a secure JWT token, enabling the test environment: docker run -i -t -d -p 8080:80 --restart=always -e EXAMPLE_ENABLED=true -e JWT_SECRET=my_secure_jwt_secret ghcr.io/euro-office/documentserver:latest And finally, open a web browser and go to the following address: http://localhost:8080 If you are running this on a remote server, replace localhost with your server's IP address. You will see the Euro-Office test page, where you can create new text documents, spreadsheets, or presentations directly in the browser. Image via Euro-Office Nextcloud promises that proper standalone desktop versions and mobile apps will arrive in a future release. -
By MacDaddyAz · Posted
It’s any of their products not just windows. -
By +TRS-80 · Posted
Google Gemini has been failing for users across the United States, Europe, and Asia since early Wednesday morning, June 10, 2026, and more than six hours into the incident Google has yet to declare a fix............. https://www.techtimes.com/articles/318152/20260610/google-gemini-outage-tops-six-hours-errors-1076-1099-worldwideflash-lite-still-answers.htm -
By +pmrd · Posted
Fun fact: There are more Warhammer 40k games than there are stars in the universe.
-
-
Recent Achievements
-
FBSPL earned a badge
Week One Done
-
Jim Dugan earned a badge
One Year In
-
Tommi118 earned a badge
One Month Later
-
sjbousquet earned a badge
One Month Later
-
sjbousquet earned a badge
Week One Done
-
-
Popular Contributors
-
Tell a friend
Question
Jose_49
Hi guys, I really do not know how to make this logic out.
Imagine I would like to get albums and their respective songs from a database and have them sorted; each one with a hyperlink of different sites so it gets to .
Example:
There's an Album "A" and the songs:
1. "One" (And by clicking I will be redirected to -> http://some_link.com/one?=blahrs)
2. "Two" (And by clicking I will be redirected to -> http://some_link.com/two?=blahrs)
3. "Three" (And by clicking I will be redirected to -> http://totally_different_link.com/one?=blahrs)
4. "Four"....etc...
And there's an album "B" and the songs:
"Track 1" (Same methodology as Album A)
"Track 2"
"Track 3"
I would like to store this info on a MySQL database, and retrieve them using PHP.
How my logic is up to right now:
Create MySQL columns with id, t_id, track, album, link
Where id is the default id mechanism in which the rows will be numbered in the Database.
Where t_id is the track number on the album;
Where track is the track name of the album
Where album is the name of the album
Where link is where I want to redirect to when clicked.
How I think I should proceed (but do not know how to)
Group each row of the table by Album first, in which many tracks will have the same album (I'm lost on how to do this).
Then to each different group, sort them via their t_id (Track number of the current album) (I'm lost on how to do this).
Display the information with their links (Easy part)
I'm planning to display them as follows:
Name goes here
1
Album track #1
Hyperlink #1
2
Album track #2
Hyperlink #2
I did not know how to Google this out....
Furthermore, am I approaching this problem correctly?
Thanks a lot and sorry for the long post.
Link to comment
https://www.neowin.net/forum/topic/1093831-mysql-with-php-help/Share on other sites
2 answers to this question
Recommended Posts