• 18-09-2024, 20:39:58
    #1
    Bu php kodlarini jquery de nasil yapabilirim?
       $telefonlar = explode(',', $satir['telefon']);
     
        if (count($telefonlar) === 1) {
            echo "<td>1. Telefon: " . $telefonlar[0] . "</td>";
        } else {
     
            echo "<td>1. Telefon: " . $telefonlar[0] . "<br>2. Telefon: " . $telefonlar[1] . "</td>";
        }
        
        echo "</tr>";
    }
  • 18-09-2024, 21:01:27
    #2
    Php explode = js split
    Php implode = js join