- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 30
- Posts with Upvotes
- 27
- Upvoting Members
- 12
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
- Interests
- Anything Internet...
- PC Specs
- 10700K 32GB 3200Mhz A2000
Hello All, I have a question regarding Gutenberg React. I'm familiar with React which is what leads me to not understanding how the process works. React can only render JSX but Gutenberg seems to render HTML (presumably by setting inner html dangerously), however it also adds event listeners to the … | |
Re: If theres discrepencies with spaces etc. I'd consider $ips = explode(",",str_replace(" ","",$field)); // Gives IP's foreach($ips as $key => $ip) { $range = explode("/",$ip); $ips[$key] = $range; } which will strip spaces out and then create an array of ip addresses [0] => [[0] => 192.168.0.0, [1] => 30] [1] … | |
Re: You could create a custom plugin for this. Would need to know more about where the files are hosted and where you retrieve the student number from. | |
Re: What results have you had so far? | |
| |
Re: Because React does not carry out a page refresh the cookie storage that React has access to is outdated. The best method for React & PHP authentication is to use token authentication: [Click Here](https://github.com/ParitoshVaidya/CodeIgniter-JWT-Sample) | |
Re: The usual way of achieving this functionality is to store a reference to the current player through a token/cookie and use that to refer to the related row in the database. For example: ________players________ id | name | gold 25 | "Player 1" | 0 Being the database structure, if … | |
Re: This is quite an ambiguous question. Can you elaborate on exactly what you're trying to achieve? | |
Re: From what I can see, you're short a closing <div> tag. | |
Re: Selects and Radios should be fine as long as you give them the value in witch you wich to be in the database. [code=html] <input type="radio" name="you_field" value="Male" /> [/code] If you were to insert the POSTed data from my little form you would insert "Male" into the database, whereas … | |
Re: [QUOTE=rineez;919779];-) lol.. its alright.. its nice that u find time for responding to forums in between busy work. and Yeh you got a point there... If you wish to address visitors who have disabled cookies in their browser, Session will be unavoidable... this link has some examples for using php … | |
Re: I'm a little confused as to why you want so much information to log someone in. Do you mean register? You say you get 1 extra error? So this doesn't happen for every textfield? This is only happening for one? My advice would be to change the else statements to … | |
Re: Like @minitauros said, change the `header("Location: $file \r\n");` line with something like: `echo '<script type="text/javascript">window.open(' . $file . ')</script>';` See if that works. | |
Hello all, I'm trying to build a system to provide an easy access but very clever service select (sounds confusing, I will explain). Essentially I'm trying to create a system then will firstly store devices of different types, these types are: - Device type (iPhone, iPod, iPad) - Generation (4th … | |
| |
Re: Because you shouldn't usually save a users password in the raw format, but instead save it as an ecrypted version using something like md5() you can't physically retrieve the users password. Instead you could send out a reset email... | |
Re: You could always user Apache's .htaccess RewriteEngine | |
Hello All, I wonder if someone could help me, I'm about to start work on a pretty heavy system that will be massively database driven. I was wondering if there was a framework out their a bit like jQuery for example that will assist me in all my MySql funcitonality. … | |
Re: And to add to this. Like @jkon said, it will be the ISP's designated IP for that client. In most cases everytime your router connects to the ISP it will be designated a new IP address and therefore collecting their current IP address is pretty useless as next time they … | |
Re: if ($channel_name6 = 'post') { $channel_name2 = $channel_name2; } else { $channel_name2 = "<img src='/videobox/data/uploads/images/$channel_name2' height='200px' width='100px'>"; } Correct me if I'm wrong but are you not trying to see if $channel_name6 is equal to "post" and not set the value of it to "post"? If so then you need … | |
Re: Please make sure that when adding headers you clear the line: [code=php] $headers = "From: ".$from_address."\r\n"; [/code] Take note on the \r\n part. | |
Re: Yes there is, however the most valid point that has been made this far is that the theory behind this is bizare. All you would have to do is input the data to the database then re-print the page to the document looping through each feild and seeing what was … | |
Re: I'm not overly keen with using the "toggle()" function in this way. I'd advise using the "animate()" function. The reason being is that toggle doesn't communicate at which state the object is at present, it only does the oposite. So if it's displayed, it just hides it. If it's hidden … | |
Re: You need to use JavaScript and possibly AJAX to make this work. You need to put an "onChange" event on each drop down box so that the page reacts to the drop down box being changed. Do you have any JavaScript knowledge? | |
Re: Yes, wmp11 has vital DVD codecs missing, silly really as many people liek yourself will play dvds via their PCs using wmp. The codecs are wide spread though so there is many places you will be able to download the required codecs. | |
Re: Saving your image as a PNG or GIF file format will keep the transparency from you image editor. JPG/JPEG does not hold transparency therefore if you save a transparent image as a JPG you image editor will replace add a white background so as to cover the transparency. | |
Re: Ok the issue from what I can see is the way in wich you are connecting to the database. Try this method: [code=php] $con = mysql_connect( "SERVER" , "USERNAME" , "PASSWORD" ) or die( "Could not connect: " . mysql_error() ); $db = mysql_select_db( "DATABASE" , $con ); [/code] This … | |
Re: Yes sorry I haven;t replied, the RAM with the higher frequency should clock down to the maximum supported frequency of your motherboard. The reason DDR RAM is so expensive is due to the fact that they are no longer mass produced as all new computers are using DDR2 or DDR3 … | |
Re: Or use a smart idea and use the JavaScript time method to check for a new record using AJAX. Really, can no-one create a chatting system? Basicly you need to look up javascript counting and that will teach you how to run the function and how spaced apart to run … | |
Re: Have you tried removing your motherboard from the case and removing exccess parts one after another until you utilise the problem? |