Navigazione

    Privacy - Termini e condizioni
    © 2020 Search On Media Group S.r.l.
    • Registrati
    • Accedi
    • CATEGORIES
    • Discussioni
    • Non letti
    • Recenti
    • Hashtags
    • Popolare
    • Utenti
    • Stream
    • Interest
    • Categories
    1. Home
    2. bullfrog.1976
    3. Post
    B

    bullfrog.1976

    @bullfrog.1976

    • Profilo
    • Chi segue 0
    • Da chi è seguito 0
    • Discussioni 1
    • Post 2
    • Migliore 0
    • Gruppi 0
    Iscrizione Ultimo Accesso
    Età 48
    0
    Reputazione
    2
    Post
    0
    Visite al profilo
    0
    Da chi è seguito
    0
    Chi segue
    User Newbie

    Post creati da bullfrog.1976

    • RE: Collegamenti ipertestuali

      L'errore è Parse Error T_STRING.

      postato in Coding
      B
      bullfrog.1976
    • Collegamenti ipertestuali

      Buondì a tutti.
      Sto lavorando ad una mappatura utilizzando le API di GoogleMaps. Ho un codice PHP che genera un XML

      codice PHP:

      
      echo '<markers>'; 
      
      while ($row = @mysql_fetch_assoc($result)){ 
      
      echo '<marker '; 
      echo 'name="  ' . parseToXML($row['denom']) . '" '; 
      echo 'address="  ' . parseToXML($row['indirizzo']) . '" '; 
      echo 'comune="' . parseToXML($row['comune']) . '" '; 
      echo 'lat="' . $row['Latitudine'] . '" '; 
      echo 'lng="' . $row['Longitudine'] . '" '; 
      echo 'type="' . $row['tipologia'] . '" '; 
      echo 'produce="' . findDOP($row['produce']) . '" '; 
      echo '/>'; 
      } 
      
      echo '</markers>';
      
      

      I nodi "name" e "produce" dovrebbero esser link a pagine php che pescano la relativa scheda da DB.

      Non riesco a inserire la stringa
      [HTML]<a href="scheda_azienda.php?denom=$row[denom]>[/HTML]
      in alcun modo perchè mi restituisce sempre gli errori PARSE.

      Qualche suggerimento?

      Grazie

      postato in Coding
      B
      bullfrog.1976