Search results

  1. Yepkoo

    Javascript Button text change

    <button>Send</button> I tried many times to change the text inside the button, only the following codes worked. document.querySelector('#ShowButton').innerHTML = 'Custom test 1'; document.querySelector('#ShowButton').innerText = 'Custom test 1'...
  2. Yepkoo

    JavaScript Operators

    Operator Data Type Description == any Tests for equality (performs implicit data type conversion) != any Tests for inequality (performs implicit data type conversion) === any Tests for equality and same data type !== any Tests for equality and same data type > numbers, strings Greater...
  3. Yepkoo

    Automatic Ajax Submission with Input change

    <script> function changeinput() { $.ajax({ url : "url.php", type: "POST", data: $("#form_id").serialize() }).done(function(response){ if (response == "no") {...
  4. Yepkoo

    Redirect from inside a php page you are running Ajax

    $.ajax({ type:"POST", url:"xxxxx.php", async: false, data: $("#form_id").serialize() success: function(data){ if(data == 'redirect'){ window.location.href='../Main/index.html'; }else{ alert(data)...
  5. Yepkoo

    Auto hide and show tag code with javascript

    Hide code, The number indicates after how many seconds the div will be hidden. setTimeout(function() {$(".hide_div").fadeOut(); }, 5000); Show code, shows after how many seconds the number div will be visible. setTimeout(function() {$(".show_div").fadeIn(); }, 10000); For example, by making...
  6. Yepkoo

    PHP Digit rounding functions

    // The ceil function rounds fractions up echo ceil(4.3); // 5 echo ceil(9.999); // 10 echo ceil(-3.14); // -3 // floor function rounds fractions down echo floor(4.3); // 4 echo floor(9.999); // 9 echo floor(-3.14); // -4 // The round function rounds the fraction to the upper digit if it...
  7. Yepkoo

    Youtube, Vimeo and Dailymotion video detection with PHP

    Yes, friends, with the function defined below, you can read Youtube, Video and Dailymotion videos only with the url address and print them in html format automatically. // PHP Youtube Thumbnail Image read function getYouTubeThumbnailImage($video_id,$vidimgbig='large') { if ($vidimgbig ==...
  8. Yepkoo

    PHP Tutorials from Scratch - Part 3 - PHP database table creation, column creation and table deletion

    First, we create our tables that we will use in our database. For example, let's create a table called our members. While creating our table, we need to add a primary key, this is the ID number of the automatically rising table, and we will need this ID number a lot. /* While creating a table...
  9. Yepkoo

    PHP Tutorials from Scratch - Part 2 - Database opening and closing operations (mysql)

    Database connection with PHP and include PHP files in another page Yes, guys, in the second part of our PHP lesson, I will show you database connection and including a php file in another php file. We will use the PDO connection for the connection to our database. PDO is short for PHP Data...
  10. Yepkoo

    PHP Tutorials from Scratch - Part 1 - Introduction - PHP editor, Adding comments, Print and Echo commands

    Friends, there is an important note that I would like to point out before starting the lessons. As the subjects progress, the lessons may seem a bit complicated so don't memorize the codes, you definitely don't need it right now, you can always use copy and paste, all you need to know is what...
  11. Yepkoo

    You can use this function to calculate the rate (such as discount) with or without VAT.

    function oddscalc($price='',odds=0,process='inc') { // inc = Dahil ise hesapla (Kdv Dahil Gibi) // exc = Hariç hesapla, iskonto veya Kdv hesaplamak için $odds_print = 0; if ($price > 0 and odds > 0) { if ($oransek == 'exc') {...
  12. Yepkoo

    Is Liquid Cooling Necessary?

    My processor gave the same performance with liquid cooling and air cooling. But my problem was not performance. Before I switched to liquid cooling, when I rendered with Unreal Engine on my computer, I saw that the temperature of my processor had increased to 93 degrees. At idle it was between...
  13. Yepkoo

    Notebook configuration suggestion

    If you're into graphics, choosing a monitor with an IPS screen is ideal. This monitor will show you colors better and more realistically. Normally 8 gb will do your job as ram, but my advice is to have 16gb ram. You can choose an i5 or i7 processor with good speed, of course, if you can afford...
  14. Yepkoo

    Mac computer or Windows computer for 3D work?

    If you want to get into 3D content production, game production, or animation video business but can't decide whether to buy a Mac computer or a Windows compatible computer, this article is for you. People on both sides of the OS war probably don't realize what the other side has to...
  15. Yepkoo

    Considerations When Building a Gathering Computer

    If you want to build a computer, but don't know what to buy, this article is for you. 1- Computer case The important thing when choosing a case is that the case has enough space for ventilation, when you want to install an additional fan and/or liquid cooler, and it also provides you with space...
  16. Yepkoo

    Can we run intel compatible programs with Apple's new M1 processor?

    Those who use Intel-compatible programs may be very worried because Apple has parted ways with Intel. But you don't have to worry. To run intel compatible programs with M1 processor, Apple uses an emulator called Rosetta within its system. You don't need to do anything to install this emulator...
  17. Yepkoo

    Memory modules were found on non-optimized memory slot

    The "Memory modules were found on non-optimized memory slot" error is caused by having 2 Rams and installing these Rams on your motherboard in a non-optimized way. Will it work without problems, of course, but you cannot optimize it as Dual Ram. For this reason, insert your Rams into the 2nd...
  18. Yepkoo

    High CPU usage

    If your CPU values constantly show 100% when you turn on your computer and do not drop, this problem may be caused by a corrupted file from Windows. Copy and paste the following command, open the "Command manager" with Administrator privileges, and press enter. You can open it by selecting...
  19. Yepkoo

    Startup repair or boot in Safe Mode when your computer is off

    If we want to open our computer with a direct startup repair, let's turn off our pc with the Power button when the Windows Icon appears. When the Windows Icon appears for the second time after turning it on again, let's turn off our computer by pressing the power button for a long time. When we...
  20. Yepkoo

    Starting the computer in safe mode or with startup repair with your PC turned on

    Let's open Recovery Options from Search to start startup repair. Let's restart our computer by pressing the "Restart now" button opposite the "Advanced Startup" text and confirming it. When our recovery options are opened, click the Advanced options in the Troubleshoot section. From here, you...
Top