Jump to content

Recommended Posts

Posted

έφτιαξα μία φόρμα στην όποια μέσω PHP καταχωρώ νέες εγγραφές σε μία βάση δεδομένων στην mysql

 

unledyi.png

 

αλλά όποτε καταχωρώ μέσω του site μια νέα εγγραφή με Ελληνικούς χαρακτήρες όπως βλέπετε στην mysql τους εμφανίζει με ερωτημάτικα αν και έχω αλλάξει την κωδικοποίηση στις PHP σελίδες σε UTF8 όπως έχω αλλάξει και την κωδικοποήση στην mysql σε UTF8

 

ξέρει κάνεις τι πρέπει να κάνω για να το διορθώσω?

Posted

Αν μπορείς δώσε μας τον κώδικα που που βάζεις κάθε καταχώρηση μέσα στην db.

Posted

ορίστε

 

<?php

 

$con=mysql_connect("localhost","developer","javalab");

if(!$con)

{

die('Δεν έγινε η σύνδεση με την βάση δεδομένων'.mysql_error());

}

 

mysql_select_db("cycladestravel", $con);

 

$sql="INSERT INTO travels(travel_id,travel_destination,travel_description,travel_price) VALUES

('$_POST[tID]','$_POST[tDestination]','$_POST[tDescription]','$_POST[tPrice]')";

mysql_set_charset('utf-8');

mysql_query("SET NAMES 'utf8';", $con);

mysql_query("SET CHARACTER SET 'UTF8';", $con);

if (!mysql_query($sql, $con))

{

die('Σφάλμα: ' . mysql_error());

}

 

echo " 1 εγγραφή καταχωρήθηκε ";

 

mysql_close($con)

?>

Posted

Δοκίμασε όπως φτιάχνεις το table να το ορίσεις κάπως έτσι:

 


CREATE TABLE IF NOT EXISTS `travels` (
  `travel_id` int(11) NOT NULL auto_increment,
  `travel_destination` varchar(255) collate utf8_unicode_ci NOT NULL,
  `travel_description` varchar(255) collate utf8_unicode_ci NOT NULL,
  `travel_price` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

 

Είναι πολύ βασικό επίσης να έχεις βάλει τα σωστά charsets και στις σελίδες που προβάλλονται τα records.

Posted

Δοκίμασε όπως φτιάχνεις το table να το ορίσεις κάπως έτσι:

 


CREATE TABLE IF NOT EXISTS `travels` (
  `travel_id` int(11) NOT NULL auto_increment,
  `travel_destination` varchar(255) collate utf8_unicode_ci NOT NULL,
  `travel_description` varchar(255) collate utf8_unicode_ci NOT NULL,
  `travel_price` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

 

Είναι πολύ βασικό επίσης να έχεις βάλει τα σωστά charsets και στις σελίδες που προβάλλονται τα records.

to dokimasa afto kai akoma to idio provlima iparxei kai epeisis oles i php selides exoun charset utf8

Posted

Μόνο στην db έχεις το πρόβλημα με το πως εμφανίζονται, ή και στην ιστοσελίδα που προβάλλεις τα records;

Posted

στην σέλιδα που προβάλω τα records εμφανίζονται κανονικά εκτός βέβαια αυτά τα οποία στην mysql εμφανίζονται με ??

Posted

στην σέλιδα που προβάλω τα records εμφανίζονται κανονικά εκτός βέβαια αυτά τα οποία στην mysql εμφανίζονται με ??

 

kita afou sta dixni stin selida mia xara logika kati pezei me to programa pou blepis tin db sou.

 

Posted

kita afou sta dixni stin selida mia xara logika kati pezei me to programa pou blepis tin db sou.

 

 

Αυτό ακριβώς. Άμα κάνεις τη δουλειά σου στην ιστοσελίδα, είσαι gg.

Posted

Αυτό ακριβώς. Άμα κάνεις τη δουλειά σου στην ιστοσελίδα, είσαι gg.

oxi den katalaves enow oses eggrafes exw kataxorisi me elinikous xaraktires stin db apo tin mysql tous emfanizei kanonika sto site alla an kanw kataxorisi apo to site me elinikous xaraktires tote kai stin mysql kai sto site tous emfanizei me erotimatika

Posted

μετα το connection με την database σου, βαλε

mysql_query("SET NAMES UTF8");

 

οταν κανεις POST data στο column travel_description,

απλα κανε escape το text μεσω του mysql_real_escape_string()

 

οταν το εμφανιζεις,

χρησιμοποιεισαι στο text για να διαβασει σε UTF-8

διαβασε περισσοτερο για to function αυτο στο php.net

$text = htmlentities($text, ENT_COMPAT, 'UTF-8');

 

πρεπει παντα να χρησιμοποεις UTF8(MySQL) και UTF-8(Browser) encoding.

επισης στο <head> tag βαλε

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

 

εαν εχεις και παλι προβλημα, reply.

Posted

evala to

mysql_query("SET NAMES UTF8");

 

kai to

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

 

alla den exw idea pou na valw to

$text = htmlentities($text, ENT_COMPAT, 'UTF-8');

 

kai pos na xrisimopoihso to  mysql_real_escape_string()

Posted

εφοσον εχεις μια φορμα που κανεις POST στην database σου, οταν πατησεις το button της φορμας σου και πριν βαλεις τα data μεσω του mysql_query("INSERT INTO ....");

 

οτιδηποτε μεταβλητη θα την περνας μεσω του

mysql_real_escape_string()

π.χ $text = mysql_real_escape_string($text); // εαν βαλω π.χ '1' or '' θα το κανει escape => \'1\' or \'\' ετσι ωστε να αποφυγεις το SQL injection

 

εαν θες να εμφανισεις κατι που ειναι se foreign characters, πρεπει να το τρεξεις μεσω του htmlentities($text, ENT_COMPAT, 'UTF-8') , ετσι ωστε να κανει encode ολους τους χαρακτηρες...

 

εαν παλι εχεις προβλημα, ποσταρε το μερος του κωδικα που χρησιμοποιεις για αυτη την λειτουργια

Posted

επείδη δεν βλέπω να βγάζω άκρη :)

 

 

<?php

 

$con=mysql_connect("localhost","developer","javalab");

mysql_query("SET NAMES UTF8");

if(!$con)

{

die('Δεν έγινε η σύνδεση με την βάση δεδομένων'.mysql_error());

}

 

mysql_select_db("cycladestravel", $con);

$sql="INSERT INTO travels(travel_id,travel_destination,travel_description,travel_price) VALUES

('$_POST[tID]','$_POST[tDestination]','$_POST[tDescription]','$_POST[tPrice]')";

mysql_set_charset('utf-8');

mysql_query("SET NAMES 'utf8';", $con);

mysql_query("SET CHARACTER SET 'UTF8';", $con);

if (!mysql_query($sql, $con))

{

die('Σφάλμα: ' . mysql_error());

}

 

echo " 1 εγγραφή καταχωρήθηκε ";

 

mysql_close($con)

?>

Posted

επείδη δεν βλέπω να βγάζω άκρη :)

 

 

<?php

 

$con=mysql_connect("localhost","developer","javalab");

mysql_query("SET NAMES UTF8");

if(!$con)

{

die('Δεν έγινε η σύνδεση με την βάση δεδομένων'.mysql_error());

}

 

mysql_select_db("cycladestravel", $con);

$sql="INSERT INTO travels(travel_id,travel_destination,travel_description,travel_price) VALUES

('$_POST[tID]','$_POST[tDestination]','$_POST[tDescription]','$_POST[tPrice]')";

mysql_set_charset('utf-8');

mysql_query("SET NAMES 'utf8';", $con);

mysql_query("SET CHARACTER SET 'UTF8';", $con);

if (!mysql_query($sql, $con))

{

die('Σφάλμα: ' . mysql_error());

}

 

echo " 1 εγγραφή καταχωρήθηκε ";

 

mysql_close($con)

?>

 

εφοσον δεν εμφανιζεις τιποτα αλλα κανεις post μονο, το htmlentities δεν το χρειαζεσαι.

 

Δοκιμασε τον παρακατω κωδικα:

<?php

 

$con=mysql_connect("localhost","developer","javalab");

mysql_query("SET NAMES UTF8");

if(!$con)

{

  die('Δεν έγινε η σύνδεση με την βάση δεδομένων'.mysql_error());

}

 

mysql_select_db("cycladestravel", $con);

$tID = $_POST["tID"];

$tDestination = $_POST["tDestination"];

$tDestination = mysql_real_escape_string($tDestination);

$tDescription = $_POST["tDescription"];

$tDescription = mysql_real_escape_string($tDescription);

$tPrice = $_POST["tPrice"];

$sql="INSERT INTO travels(travel_id,travel_destination,travel_description,travel_price) VALUES

('$tID','$tDestination','$tDescription','$tPrice')";

if (!mysql_query($sql, $con))

{

  die('Σφάλμα: ' . mysql_error());

}

 

echo " 1 εγγραφή καταχωρήθηκε ";

 

mysql_close($con)

?>

 

επεισης , δες αν η database σου ειναι utf8_unicode_ci οπως και ολα τα tables σου, τα columns που εχουν κειμενο

και οπως ειπα και να βαλεις και το meta tag

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

μετα το head tag.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Selling Telegram bots with 2024 year old. Strong. Bots clean, without subscribers, without blocking Price list: From 3 bots - 3.5$ for 1sht. From 20 bots - 3$ for 1pc. From 60 bots - 2.8$ for 1pc. From 100 bots - 2.5$ for 1pc. From 400 bots - 2$ for 1pc. Full transfer of owner rights / transfer account. Sell empty channels 2022. Without shadow bans. Not used. Without posts. Write in Telegram - @SMMTG6
    • Hello everyone   We are engaged in search engine optimization bots in Telegram.   - We make ranking bots to order Telegram search bots up to 100,000 premium subscribers.   We work with countries such as: USA, China, Israel, Russia, Uzbekistan, India, Saudi Arabia, Iran, Italy, Turkey and other countries. Clarify with us. Possible output in multi-geo (several countries).   Prices from 10$ from 20$ per 1000 Premium subscribers, depending on the country.   Term of manufacture of bot - 4 days   We are one of the most famous sellers in Telegram. We agree on the guarantor at your expense.   ☆ Our Telegram-channel - https://t.me/+e_DKWnC5AFw0ZDhi   ☆ For questions about buying a bot contact @SMMTG6   ☆ Our panel with the best Premium subscribers - smmtg.pro
    • Opening April 26 at 19:00 (UTC +3)  https://lineage2dex.com/en/sign-in Open Beta Test from April 22 This is pre-announcing of NEW season server, so we want to share some key points of it. Full details with road map, patch notes we will announce a bit latter Main features Modern Classic client (less lags, smoother gameplay, a lot of useful interface features). Anti-bot protection - we use our own system in combine with popular solutions like AAC, so in the end our project have one of the best anti-bot shield exists. Buff book to buff yourself or your summon/pet. With regular buff book you can create only 1 buff profile, if you need more - get the modern buff book and create up to 10 profiles! Daily rewards - login to the game every day and get rewards. Expanded subclass slots - you can have 5 subclasses from the beginning and expand up to 10. Class/Gender change - you can change your main class and gender if you want. Masterwork items (can be obtained by crafting or farming RBs, have better bonuses than regular items). Item Broker Auctions in towns can sell some epic jewelry and other useful goods for adena (3 times per week). Giran Harbor Fair - daily event which allows you to get temporary epic jewelry a lot of other rare items for adena. Talents - special tree with passive skills which will help you to tune your class better. Team vs Team event. Episodes - we open new content step by step to keep you engaged, bring more fun and extend the game. Episodes reveal following features: Hellbound Island Isle of Preyer, with new content, new Dynasty gear PvP item improvement allows you to improve your items with additional bonuses. Charms can be equipped in one of the special slots that open when wearing a bracelet. Each type of charm grants the wearer certain bonuses Instance Zones New Epic Bosses - Freya, Beleth, Tiat, Trasken Cyclic macros (macros restarts when finishes) Why choose Dex? We have destroyed the stereotypes that PvP servers live for a couple of weeks. Our Union x50 server proves it (working from April 2020 with good online). We have enough high-end content that will allow you to maintain interest in the game all the time! And we are always working on improving the game and adding new interesting activities and content. Seasonal servers have a road map with planned list of changes to keep you engaged. When the time comes the server will be merged with the Union server. So if you're new on Dex, you can start from zero like all othe players on NEW (seasonal) server. All your items and characters will be safe, and you can continue play when season over on our main server - UNION. High-end content (unlocked over episodes) Hellbound Island Spoiler Hellbound is an endgame location mostly for parties, but if you will be well geared you can farm most spots solo. You can get to Hellbound with help of gatekeepers. Hellbound contains multiple raid bosses and entrance to new epic boss Beleth. Drop from raid bosses and from entire island in general is very valuable. Monsters at Hellbound can drop special Hellbound Coins which can be exchanged to some useful goods at the Hellbound Trader Joseph. Isle of Prayer Spoiler Isle of Prayer is a high-end location, divided into several areas, each tailored for different classes and playstyles. By completing quests and farming mobs on IoP, you can obtain Dynasty equipment. You can read more about specific features and spots from our wiki: The most popular Lineage 2 classic server waiting for you. Download L2 client and play! You expect grandiose battles and incredible siege. The adrenaline just rolls! The most popular Lineage 2 classic server waiting for you. Download L2 client and play! You expect grandiose battles and incredible siege. The adrenaline just rolls!  lineage2dex.com We will be glad to hear any comments and suggestions on our discord channel, join it we have very friendly community there  - Join discord  
    • rly cool l2off pack...but rly expesive....
  • Topics

×
×
  • Create New...