Jump to content

pedro84

Members
  • Posts

    85
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

pedro84's Achievements

Member

Member (2/5)

0

Reputation

  1. Thanks for reply. Was really quite to do this. Cheers!
  2. Good day, I use oempro software and try to parse XMLReturn but it's not working for me, simplexml_load_string return tons of errors. Maybe someone could help me? pending.php?XMLReturn=<%3Fxml version%3D"1.0" encoding%3D"utf-8"%3F><response><Success><![CDATA[1]]><%2FSuccess><ErrorCode><![CDATA[0]]><%2FErrorCode><SubscriberID><![CDATA[11]]><%2FSubscriberID><RedirectURL><![CDATA[http%3A%2F%2Fflivoo.com%2Fcustomers%2Fmario%2Fpending.php]]><%2FRedirectURL><%2Fresponse> This is how the GET string looks, how to parse it?
  3. I have question, is it possible to ead file attributes with PHP?
  4. I got form sending with "post" method. I got problem with submiting it. When I use mod_rewrite: browse/filter/ the form is not working, I got info about query error. When I use browse/filter (without ending slash) it works perfectly. Is it possibility to force it to work with ending slash? mod_rewrite rule: RewriteRule ^browse/([a-zA-Z0-9]+)$ index.php?module=albums&action=$1 [L]
  5. Hi! I got three tables: musicians, bands and musicians_bands. In musicians and database I'm storing all musicians and bands data. I musicians_bands table I store informations about bands of specifics musicians they were members. Now question. I got following query: $query = mysql_query("SELECT * FROM musicians, bands, musicians_bands where (musicians_bands.id=musicians.id) and (musicians_bands.id=bands.id) group by bands.id"); I returns for me: Artist 1 - Band 1 Artist 2 - Band 2 Artist 1 - Band 3 How to force it to display: Artist 1 - Band 1, Band 3 Artist 2 - Band 2 ?
  6. I have tried many options. I cannot do it. I think $track_num need to be reset after [disc 2] when text field is: [disc 1] # track # track # track # track [disc 2] # track # track # track
  7. Two more questions How to force it to number only rows containing "#" character? How to force to reset numbering in case where album is two disc release?
×
×
  • 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.