Hello, my goal is to simulate keyboard presses in JavaScript and to send them at regular intervals in the text input of an instant messaging application.
However, not being a professional of JavaScript, I face several problems in my program below :
1) Being sure that the keystroke...
Announcement
Collapse
No announcement yet.
Search Result
Collapse
500 results in 0.0266 seconds.
Keywords
Members
Tags
-
Keypress function
-
Please help modify script to comply for embedding in webpage
I need to embed a booking service into my webpage. I got the javascript to do it but when I insert it I just get a blank page. After running the code through a validator it turns out there are some errors or non compliance. Can you please hep me make it compliant and run
Code:<script type="text/javascript">
-
Learning to Program by Steven Foote- Chapter 4 Grunt difficulties
Hi, I've decided it would a good idea to learn basic programming.
Anyhow, up until this point in the book I haven't had any major issues, barring some annoying syntax mistakes that I made. Sorry if this isn't the proper place to post, it seems like it is though, as I'm using Javascript....
-
judgedredd started a topic Error log says mysql_connect will be deprecated - how do I use the replacements?in PHPError log says mysql_connect will be deprecated - how do I use the replacements?
I just had a look at my error logs for one of my sites and it says:
How do I replace it?
Here is the code for that php file:
PHP Code:<?php
include("./const.inc.php");
Class DBSQL
{
functionLast edited by judgedredd; Sep 4, 2019, 10:09 PM.
-
Need some help with a Memory Class coded in C++
hey everyone, i'm fairly new to coding and just needed some help getting past an error i've encountered.
I'm using Visual Studio 2019, coding a memory class for a CS:GO skin changer.
Code:#pragma once //With this pragma we can tell the compiler to compile only once this
-
JS to HTML problem
I want this line:
Code:BOX: <input type="checkbox" onclick=check('$someClass','$someID')> <p>
-
Caching and dealing with a PDO error ?
Hi,
It was suggested that I catch and deal with a duplicate row entry with this:
PHP Code:$sql = 'INSERT INTO `clients` (email,fname,lname,permission,create_date,last_date,chg_time,ip_add,country)
VALUES (?,?,?,?,?,?,?,?,?)';
$stmt= $connect->prepare($sql);
-
How to insert image directly in mysql using command?
Hello sir,
I am trying to inset a small image img.png (57.7KB) into mysql database. Table structure is id(int) and image(blob). I directly inserting image can cause problems but I need this for test purpose.
I can insert the image using localhost/phpmyadmin but
when I try command-line...Last edited by prohor; Jun 25, 2019, 01:32 PM.
-
send a html file plus a variable as JSON to JQuery in response to an ajax call
Hi !
I have an html in a file test.html as below :
Code:<header id='showcase'> <h1>Welcome !! </h1></header> <div id ='content'> <div id='counter'> 0 </div> </div><button
-
Getting character set error
Hi,
In my migration to php 7 I am encountering the character set error:
Fatal error: Uncaught PDOException: SQLSTATE[HY000] [2019] Unknown character set in /home/cavd889/public_html/z_functions.php:29 Stack trace: #0 /home/cavd889/public_html/z_functions.php(29): PDO->__construct('mysql:host=loca...')...
-
what is the easy way to get details error with PDO in PHP?
Hello Sir,
I am trying to learn error handling with PHP PDO, in case of PHP - MySQL I can view the error with
Code:if (!$check1_res) { printf("Error: %s\n", mysqli_error($con)); exit(); }
-
concatenation problem
I am getting an error while trying to generate a link dynamically. The problem occurs in the italicised part of the following line of code. I cannot see the error. Can any of you? If I remove the variable from the function generatePage it works fine. It is only when I try to concatenate the variable...
-
"console is not defined" error
Hello,
This is my first post and I hope it is to the correct forum.
It is just a simple problem to compute satellite motions , nothing extraordinary, I have written similar in java in the past without problems.
I am using jsbin.com and logging in through GitHub.
I have...