Кемеровские программисты php общаются здесь
Anonymous
CodeIgniter - ошибка анализа: синтаксическая ошибка, неожиданная ' -', ожидая '{'
Сообщение
Anonymous » 08 май 2025, 12:01
Я новичок в программировании codeigniter, и у меня возникают некоторые проблемы со ссылкой на другой контроллер.
Код: Выделить всё
Animania Manager
[*]
$(document).ready(function() {
$('#offerte').DataTable();
} );
$(document).ready(function() {
$('#curriculum').DataTable();
} );
$(document).ready(function() {
// Setup - add a text input to each footer cell
$('#offerte tfoot th').each( function () {
var title = $(this).text();
$(this).html( ' ');
} );
// DataTable
var table = $('#offerte').DataTable();
// Apply the search
table.columns().every( function () {
var that = this;
$( 'input', this.footer() ).on( 'keyup change', function () {
if ( that.search() !== this.value ) {
that
.search( this.value )
.draw();
}
} );
} );
} );
$(document).ready(function() {
// Setup - add a text input to each footer cell
$('#curriculum tfoot th').each( function () {
var title = $(this).text();
$(this).html( ' ');
} );
// DataTable
var table = $('#curriculum').DataTable();
// Apply the search
table.columns().every( function () {
var that = this;
$( 'input', this.footer() ).on( 'keyup change', function () {
if ( that.search() !== this.value ) {
that
.search( this.value )
.draw();
}
} );
} );
} );
[list]
Inserimento offerta
[*]Inserimento CV
[*]
[/list]
[list]
[*][url=#0]Login[/url]
[*][url=#0]Registrazione[/url]
[/list]
[list]
[*][url=#0]Login[/url]
[*][url=#0]Nuovo account[/url]
[/list]
E-mail
Errore
Password
[url=#0]Nascondi[/url]
Errore!
Ricordami
[url=#0]Hai dimenticato la password?[/url]
Username
Errore!
E-mail
Errore!
Password
[url=#0]Nascondi[/url]
Errore!
Accetto i [url=#0]Termini[/url]
Hai perso la tua password? Inserisci il tuo indirizzo email. Riceverai un link per la creazione di una nuova password!
E-mail
Errore!
[url=#0]Torna al log-in[/url]
[url=#0]Chiudi[/url]
Подробнее здесь: [url]https://stackoverflow.com/questions/37500280/codeigniter-parse-error-syntax-error-unexpected-expecting[/url]
1746694875
Anonymous
Я новичок в программировании codeigniter, и у меня возникают некоторые проблемы со ссылкой на другой контроллер.[code] Animania Manager [*] $(document).ready(function() { $('#offerte').DataTable(); } ); $(document).ready(function() { $('#curriculum').DataTable(); } ); $(document).ready(function() { // Setup - add a text input to each footer cell $('#offerte tfoot th').each( function () { var title = $(this).text(); $(this).html( ' '); } ); // DataTable var table = $('#offerte').DataTable(); // Apply the search table.columns().every( function () { var that = this; $( 'input', this.footer() ).on( 'keyup change', function () { if ( that.search() !== this.value ) { that .search( this.value ) .draw(); } } ); } ); } ); $(document).ready(function() { // Setup - add a text input to each footer cell $('#curriculum tfoot th').each( function () { var title = $(this).text(); $(this).html( ' '); } ); // DataTable var table = $('#curriculum').DataTable(); // Apply the search table.columns().every( function () { var that = this; $( 'input', this.footer() ).on( 'keyup change', function () { if ( that.search() !== this.value ) { that .search( this.value ) .draw(); } } ); } ); } ); [list] Inserimento offerta [*]Inserimento CV [*] [/list] [list] [*][url=#0]Login[/url] [*][url=#0]Registrazione[/url] [/list] [list] [*][url=#0]Login[/url] [*][url=#0]Nuovo account[/url] [/list] E-mail Errore Password [url=#0]Nascondi[/url] Errore! Ricordami [url=#0]Hai dimenticato la password?[/url] Username Errore! E-mail Errore! Password [url=#0]Nascondi[/url] Errore! Accetto i [url=#0]Termini[/url] Hai perso la tua password? Inserisci il tuo indirizzo email. Riceverai un link per la creazione di una nuova password! E-mail Errore! [url=#0]Torna al log-in[/url] [url=#0]Chiudi[/url] Подробнее здесь: [url]https://stackoverflow.com/questions/37500280/codeigniter-parse-error-syntax-error-unexpected-expecting[/url]