Jak mogę zmienić takowy kod na taki aby nie wyskakiwał mi błąd składni
Próbowałem zrobić takie coś:
\'tekst\'
\"tekst\"
oraz bez \ i nic, dalej to samo, albo jakieś błędy typu ze znaleziono symbol $
Dodane te \'test\' gdyż wyskakiwały mi błędy w podstronie z pluginami.
Cytat:Błąd SQL
MyBB napotkało wewnętrzny błąd w zapytaniu SQL i nie może kontynuować.
Błąd SQL:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '$loginModal input[name=\"url\"]').attr(\"value\", window.location); $('a[na' at line 3
Zapytanie:
INSERT INTO mybb_templates (tid ,title ,template ,sid ) VALUES ('NULL','rek_js',' ','-1')
$rek_jss = '<script src=\"//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js\" type=\"text/javascript\"></script>
<script type=\"text/javascript\">
jQuery.noConflict();
jQuery(document).ready(function($)
{
$(\'$loginModal input[name=\"url\"]\').attr(\"value\", window.location);
$(\'a[name=\"modal\"]\').on(\'click\', function(event)
{
event.preventDefault();
var target = $(this).attr(\'rel\');
var maskHeight = $(document).height();
var maskWidth = $(window).width();
$(\'#mask\').css({\'width\': maskWidth, \'height\': maskHeight});
$(\'#mask\').fadeIn(1000);
$(\'#mask\').fadeTo(\"slow\", 0.8);
var winH = $(window).height();
var winW = $(window).width();
$(target).css(\'top\', (winH / 2) - ($(target).height() / 2));
$(target).css(\'left\', (winW / 2) - ($(target).width() / 2));
$(target).fadeIn(2000);
});
$(\'.modalBox a[rel=\"closeModal\"]\').on(\'click\', function(event)
{
event.preventDefault();
$(\'#mask, .modalBox\').hide();
});
$(\'#mask\').on(\'click\', function ()
{
$(this).hide();
$(\'.modalBox\').hide();
});
});
</script>';
$rek_js = array(
"tid" => "NULL",
"title" => "rek_js",
"template" => "$rek_jss",
"sid" => "-1",
);
Próbowałem zrobić takie coś:
\'tekst\'
\"tekst\"
oraz bez \ i nic, dalej to samo, albo jakieś błędy typu ze znaleziono symbol $
Dodane te \'test\' gdyż wyskakiwały mi błędy w podstronie z pluginami.