Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
93% Quality Score
Upvotes Received
30
Posts with Upvotes
27
Upvoting Members
12
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
24 Commented Posts
3 Endorsements
Ranked #486
Ranked #505
~66.9K People Reached
Interests
Anything Internet...
PC Specs
10700K 32GB 3200Mhz A2000
Member Avatar for Josh Connerty

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 …

Member Avatar for rproffitt
0
61
Member Avatar for matei_

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] …

Member Avatar for Josh Connerty
1
365
Member Avatar for Alican_2

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.

Member Avatar for rproffitt
0
58
Member Avatar for KnowledgeMan
Member Avatar for SimonIoa
Member Avatar for gajen007

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)

Member Avatar for Dani
1
600
Member Avatar for allalhill

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 …

Member Avatar for Josh Connerty
0
35
Member Avatar for KnowledgeMan
Member Avatar for Josh Connerty
0
73
Member Avatar for Marco_18
Member Avatar for Josh Connerty
0
56
Member Avatar for adindra

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 …

Member Avatar for diafol
0
2K
Member Avatar for sandipan.rcciit

[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 …

Member Avatar for farah ashikin
0
1K
Member Avatar for engrjd91

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 …

Member Avatar for engrjd91
0
3K
Member Avatar for dinhunzvi

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.

Member Avatar for diafol
0
697
Member Avatar for Josh Connerty

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 …

Member Avatar for diafol
0
304
Member Avatar for sparkles_links
Member Avatar for shehnaz20

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...

Member Avatar for gabrielcastillo
0
1K
Member Avatar for cjohnweb
Member Avatar for Josh Connerty

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. …

Member Avatar for Josh Connerty
0
313
Member Avatar for mattyd

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 …

Member Avatar for JorgeM
0
134
Member Avatar for Jibran12345

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 …

Member Avatar for Josh Connerty
0
204
Member Avatar for nathanpacker

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.

Member Avatar for dineshsjce
-1
2K
Member Avatar for brandon66

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 …

Member Avatar for brandon66
0
196
Member Avatar for chris evans

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 …

Member Avatar for Josh Connerty
0
299
Member Avatar for AARTI SHRIVAS

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?

Member Avatar for AARTI SHRIVAS
0
4K
Member Avatar for johndorward

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.

Member Avatar for Rednaxella
0
420
Member Avatar for scaiferw

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.

Member Avatar for anand01
0
142
Member Avatar for snefmoo

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 …

Member Avatar for drjohn
0
845
Member Avatar for sarayewo

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 …

Member Avatar for caperjack
0
1K
Member Avatar for love_bug

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 …

Member Avatar for gelos
0
244
Member Avatar for tanyoyo

Have you tried removing your motherboard from the case and removing exccess parts one after another until you utilise the problem?

Member Avatar for babakbet
0
140